Android数据存储——2.文件存储_B_资源文件

今天学习Android数据存储——文件存储_资源文件

  • 把资源文件mybook.txt放入项目目录下的res资源文件夹下的raw文件夹下(没有则新建),PS:mybook.txt存为UTF-8编码。

XML布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MyFileOperateDemo" >
    <TextView
        android:id="@+id/msg"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="22sp" />
</LinearLayout>

Java代码:

 

public class MyFileOperateDemo extends Activity {
	private TextView msg = null;//文本组件
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		super.setContentView(R.layout.main);
		this.msg=(TextView)super.findViewById(R.id.msg);

		//资源文件的数据存储
		Resources res = super.getResources();//资源操作类
		InputStream input = res.openRawResource(R.raw.mybook);//为要读取的内容设置输入流
		Scanner scan = new Scanner(input);
		StringBuffer buf = new StringBuffer();
		while(scan.hasNext()){
			buf.append(scan.next()).append("\n");
		}
		scan.close();
		try {
			input.close();
		} 
		catch (IOException e) {
			e.printStackTrace();
		}
		this.msg.setText(buf);
	}
}

读取结果:


posted @ 2013-04-15 10:37  魅惑之眼  阅读(187)  评论(0)    收藏  举报