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

读取Assets中的文件数据

时间:2014-08-13 18:00:06      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   文件   数据   div   line   

 1 try {
 2             // 返回的字节流
 3             InputStream is = getResources().getAssets().open("info.txt");
 4             // 当读取时,属于文本文件的时候,需要将它包装成字符流。
 5             InputStreamReader isr = new InputStreamReader(is, "UTF-8");
 6             // 进一步进行包装
 7             BufferedReader bfr = new BufferedReader(isr);
 8             String in = "";
 9             while ((in = bfr.readLine()) != null) {
10                 Log.i("AAA", in);                
11             }
12         } catch (IOException e) {
13             e.printStackTrace();
14         }

 

读取Assets中的文件数据,布布扣,bubuko.com

读取Assets中的文件数据

标签:style   blog   color   io   文件   数据   div   line   

原文地址:http://www.cnblogs.com/androidsj/p/3910343.html

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