android从asset文件夹读取文件

1)将一个txt文本(msg.txt)复制到开发目录的asset文件夹下。

android从asset文件夹读取文件

2)用getAssets().open()可以得到一个输入流。注意getAssets方法必须用在Activity下边。如果不是一个activity而只是一个普通class,则要将context传递到class里,然后再用getAssets()。

android从asset文件夹读取文件
public myClass(Context myContext) {
    AssetManager mngr = myContext.getAssets();
    InputStream is = mngr.open("textdb.txt");
}
android从asset文件夹读取文件

3)得到inputstream可以做自己想做的事了。比如转化成string然后改变textview。

android从asset文件夹读取文件
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        TextView tv= (TextView)findViewById(R.id.textid);
        
        InputStream input;
        try{
            input= getAssets().open("msg.txt");
            int size= input.available();
            byte[] buffer= new byte[size];
            input.read(buffer);
            input.close();
            String text = new String(buffer);
            tv.setText(text);
        }catch(IOException e){
            e.printStackTrace();
        }
        
        
        
        
    }
android从asset文件夹读取文件

android从asset文件夹读取文件

上一篇:小程序开发使用Nodejs koa2方法


下一篇:Android单选钮的setOnCheckedChangeListener事件