码迷,mamicode.com
首页 > 其他好文 > 详细

assets目录读取

时间:2014-09-16 19:09:01      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:private   assets   result   null   

private void readFromFile() throws IOException{
InputStream is = this.getAssets().open("wyw.txt");
InputStreamReader isr = new InputStreamReader(is, "GBK");
BufferedReader br = new BufferedReader(isr);
String str = br.readLine();
while((str = br.readLine()) != null){
Log.v("result", str);
}
br.close();
is.close();
}


本文出自 “爬过山见过海” 博客,谢绝转载!

assets目录读取

标签:private   assets   result   null   

原文地址:http://670176656.blog.51cto.com/4500575/1553361

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!