標籤:
assets檔案夾資源的訪問 assets檔案夾裡面的檔案都是保持原始的檔案格式,需要用AssetManager以位元組流的形式讀取檔案。 1. 先在Activity裡面調用
getAssets() 來擷取AssetManager引用。 2. 再用AssetManager的
open(String fileName, int accessMode) 方法則指定讀取的檔案以及訪問模式就能得到輸入資料流InputStream。 3. 然後就是用已經open file 的inputStream讀取檔案,讀取完成後記得inputStream.
close() 。 4.調用AssetManager.
close() 關閉AssetManager。
需要注意的是,來自Resources和Assets 中的檔案只可以讀取而不能進行寫的操作
以下為從Raw檔案中讀取:
代碼
<div "=""> public String getFromRaw(){
try {
InputStreamReader inputReader = new InputStreamReader( getResources().openRawResource(R.raw.test1));
BufferedReader bufReader = new BufferedReader(inputReader);
String line="";
String Result="";
while((line = bufReader.readLine()) != null)
Result += line;
return Result;
} catch (Exception e) {
e.printStackTrace();
}
}
以下為直接從assets讀取
代碼
public String getFromAssets(String fileName){
try {
InputStreamReader inputReader = new InputStreamReader( getResources().getAssets().open(fileName) );
BufferedReader bufReader = new BufferedReader(inputReader);
String line="";
String Result="";
while((line = bufReader.readLine()) != null)
Result += line;
return Result;
} catch (Exception e) {
e.printStackTrace();
}
}
當然如果你要得到記憶體流的話也可以直接返回記憶體流!
<div "="">接下來,我們建立一個工程檔案,命名為AssetsDemo。
然後建立一個布局檔案,如下,很簡單,無需我多介紹,大家一看就明白。
然後呢,我從網上找了段文字,存放在assets檔案目錄下,取名為health.txt 這就是今天我們要讀取的檔案啦。
這個.txt檔案,我們可以直接雙擊查看。如下所示。
<div "="">接下來,就是今天的重頭戲,Android讀取檔案的核心代碼。就直接貼代碼了。<div "="">package com.assets.cn;
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 AssetsDemoActivity extends Activity {
public static final String ENCODING = "UTF-8";
TextView tv1;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv1 = (TextView)findViewById(R.id.tv1);
tv1.setTextColor(Color.BLACK);
tv1.setTextSize(25.0f);
tv1.setText(getFromAssets("health.txt"));
}
//從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;
}
}<div "=""><div "="">
Java解析JSON檔案的方法 (二)