歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android中資源文件assets和res下面raw文件的使用不同點

在建立項目中一般會默認建立assets文件,當然我們還可以在res文件下面建立raw文件夾,這裡面都可以存放一些圖片,音頻或者文本信息,可以供我們在程序當中進行使用,不過他們兩個也有不同點;

      assets下面的文件不會被編譯,通過路徑可以去訪問其中的內容。raw中文件會自動編譯,我們可以在R.java文件中找到對應的ID,

    看下面截圖:

      

   

       那麼既然這樣那我們平時該怎麼樣進行把資源放入這兩個文件當中呢?

      我個人平時喜歡比較文件的大小,如果文件比較大一點的會放入到aeests文件中,因為用這個文件文件當中的信息,相當於要去進行IO流操作,比較耗時的操作

      其中比較重要的是獲取到Assets和Raw文件夾中的資源方法:

      Assets:AssetManager assetManager = getAssets();

      Raw:        InputStream inputStream = getResources().openRawResource(R.raw.demo); 

      下面該Demo的Activity源代碼:

      

[java]
  1. package com.jiangqq.aeesrtandraw;  
  2.   
  3. import java.io.ByteArrayOutputStream;  
  4. import java.io.IOException;  
  5. import java.io.InputStream;  
  6.   
  7. import Android.app.Activity;  
  8. import android.content.res.AssetManager;  
  9. import android.os.Bundle;  
  10. import android.widget.EditText;  
  11.   
  12. /** 
  13.  * 該Demo演示Assets和Raw文件夾中文件的使用方法 
  14.  *  
  15.  * @author jiangqq 
  16.  *  
  17.  */  
  18. public class AeesrtsAndRawActivity extends Activity {  
  19.     private EditText et1, et2;  
  20.   
  21.     @Override  
  22.     public void onCreate(Bundle savedInstanceState) {  
  23.         super.onCreate(savedInstanceState);  
  24.         setContentView(R.layout.main);  
  25.   
  26.         readAssets();  
  27.         readRaw();  
  28.     }  
  29.   
  30.     /** 
  31.      * 使用Assets中的文件 
  32.      */  
  33.     private void readAssets() {  
  34.         et1 = (EditText) findViewById(R.id.et1);  
  35.         AssetManager assetManager = getAssets();  
  36.         try {  
  37.             InputStream inputStream = assetManager.open("demo.txt");  
  38.             et1.setText(read(inputStream));  
  39.         } catch (IOException e) {  
  40.             e.printStackTrace();  
  41.         }  
  42.     }  
  43.   
  44.     /** 
  45.      * 使用Raw中的文件 
  46.      */  
  47.     private void readRaw() {  
  48.         et2 = (EditText) findViewById(R.id.et2);  
  49.         InputStream inputStream = getResources().openRawResource(R.raw.demo);  
  50.         et2.setText(read(inputStream));  
  51.     }  
  52.   
  53.     /** 
  54.      * 進行IO流讀寫 
  55.      *  
  56.      * @param inputStream 
  57.      * @return oStream.toString() or “文件讀寫失敗” 
  58.      */  
  59.     private String read(InputStream inputStream) {  
  60.   
  61.         try {  
  62.             ByteArrayOutputStream oStream = new ByteArrayOutputStream();  
  63.             int length;  
  64.             while ((length = inputStream.read()) != -1) {  
  65.                 oStream.write(length);  
  66.             }  
  67.             return oStream.toString();  
  68.         } catch (IOException e) {  
  69.             return "文件讀寫失敗";  
  70.         }  
  71.     }  
  72. }  

     布局文件:

      

[html]
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <LinearLayout  
  8.         android:layout_width="fill_parent"  
  9.         android:layout_height="wrap_content"  
  10.         android:orientation="horizontal" >  
  11.   
  12.         <TextView  
  13.             android:layout_width="wrap_content"  
  14.             android:layout_height="wrap_content"  
  15.             android:text="@string/et1" />  
  16.   
  17.         <EditText  
  18.             android:id="@+id/et1"  
  19.             android:layout_width="fill_parent"  
  20.             android:layout_height="wrap_content" />  
  21.     </LinearLayout>  
  22.   
  23.     <LinearLayout  
  24.         android:layout_width="fill_parent"  
  25.         android:layout_height="wrap_content"  
  26.         android:orientation="horizontal" >  
  27.   
  28.         <TextView  
  29.             android:layout_width="wrap_content"  
  30.             android:layout_height="wrap_content"  
  31.             android:text="@string/et2" />  
  32.   
  33.         <EditText  
  34.             android:id="@+id/et2"  
  35.             android:layout_width="fill_parent"  
  36.             android:layout_height="wrap_content" />  
  37.     </LinearLayout>  
  38.   
  39. </LinearLayout>  
    Demo運行效果截圖:

    

     

    這樣就OK了。

Copyright © Linux教程網 All Rights Reserved