2011年4月30日星期六

通過資產管理員(AssetManager)讀取資產(assets)

一般我們將把我們的資源(resources)保存於 /res/raw/ 文件夾中.

然而,如果你需要存取原始文件名和文件的層次結構,可能會考慮保存一些資源在/assets/(資產)文件夾(而不是/res/raw/)。在 /assets/ 的文件沒有一個資源 ID,所以只可以通過資產管理員(AssetManager)存取在 /assets/ 文件夾下的文件。

通過資產管理員(AssetManager)讀取資產(assets)

package com.AndroidAssets;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;

import android.app.Activity;
import android.content.res.AssetManager;
import android.os.Bundle;
import android.widget.TextView;

public class AndroidAssets extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

TextView myText = (TextView)findViewById(R.id.mytext);

AssetManager assetManager = getAssets();
InputStream inputStream = null;

String MyStream;
try {
// 指定/assets/MyAssets.txt
inputStream = assetManager.open("MyAssets.txt");

ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
byte[] bytes = new byte[4096];

int len;
while ((len = inputStream.read(bytes)) > 0){
byteArrayOutputStream.write(bytes, 0, len);
}

MyStream = new String(byteArrayOutputStream.toByteArray(), "UTF8");

} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
MyStream = e.toString();
}

myText.setText(MyStream);

}
}


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<TextView
android:id="@+id/mytext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>

沒有留言:

發佈留言