概述
1)将一个txt文本(msg.txt)复制到开发目录的asset文件夹下。
2)用getAssets().open()可以得到一个输入流。注意getAssets方法必须用在Activity下边。如果不是一个activity而只是一个普通class,则要将context传递到class里,然后再用getAssets()。
public myClass(Context myContext) { AssetManager mngr = myContext.getAssets(); InputStream is = mngr.open("textdb.txt"); }
3)得到inputstream可以做自己想做的事了。比如转化成string然后改变textview。
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(); } }
转载于:https://www.cnblogs.com/miaoz/p/3540071.html
最后
以上就是寒冷大米为你收集整理的android从asset文件夹读取文件的全部内容,希望文章能够帮你解决android从asset文件夹读取文件所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复