android 讀取raw檔案

來源:互聯網
上載者:User

標籤:android   style   class   java   ext   color   

在Android平台下,除了對應用程式的私人檔案夾中的檔案進行操作外,還可以從資源檔和 Assets 中獲得輸入資料流讀取資料,這些檔案分別放在應用程式的res/raw 目錄和 assets 目錄下,這些檔案在編譯的時候和其他檔案一起被打包。

    需要注意的是,來自Resources和Assets 中的檔案只可以讀取而不能進行寫的操作,下面就通過一個例子來說明如何從 Resources 和 Assets中的檔案中讀取資訊。首先分別在res/raw 和 assets 目錄下建立兩個文字檔 "test1.txt"   和 "test2.txt" 用以讀取,結構如。



   為了避免字串轉碼帶來的麻煩,可以將兩個文字檔的編碼格式設定為UTF-8。設定編碼格式的方法有很多種,比較簡單的一種是用 Windows 的記事本開啟文字檔,在另存新檔對話方塊中編碼格式選擇"UTF-8" ,如。



看一下運行後的效果。

 

package xiaohang.zhimeng;

import java.io.InputStream;
import org.apache.http.util.EncodingUtils;
import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.widget.TextView;

public class Activity02 extends Activity{
    
    public static final String ENCODING = "UTF-8";
    TextView tv1;
    TextView tv2;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        tv1 = (TextView)findViewById(R.id.tv1);
        tv1.setTextColor(Color.RED);
        tv1.setTextSize(15.0f);
        tv2 = (TextView)findViewById(R.id.tv2);
        tv2.setTextColor(Color.RED);
        tv2.setTextSize(15.0f);
        tv1.setText(getFromRaw());
        tv2.setText(getFromAssets("test2.txt"));
    }
    
    //從resources中的raw 檔案夾中擷取檔案並讀取資料
    public String getFromRaw(){
        String result = "";
            try {
                InputStream in = getResources().openRawResource(R.raw.test1);
                //擷取檔案的位元組數
                int lenght = in.available();
                //建立byte數組
                byte[]  buffer = new byte[lenght];
                //將檔案中的資料讀到byte數組中
                in.read(buffer);
                result = EncodingUtils.getString(buffer, ENCODING);
            } catch (Exception e) {
                e.printStackTrace();
            }
            return result;
    }
    
    //從assets 檔案夾中擷取檔案並讀取資料
    public String getFromAssets(String fileName){
        String result = "";
            try {
                InputStream in = getResources().getAssets().open(fileName);
                //擷取檔案的位元組數
                int lenght = in.available();
                //建立byte數組
                byte[]  buffer = new byte[lenght];
                //將檔案中的資料讀到byte數組中
                in.read(buffer);
                result = EncodingUtils.getString(buffer, ENCODING);
            } catch (Exception e) {
                e.printStackTrace();
            }
            return result;
    }
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.