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

获得assets文件夹中文件内容

时间:2014-10-12 13:02:57      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   文件   sp   div   on   

      /**
     * @param fileName
     * @return assets中文件的字符串
     */
    public String getFromAssets(String fileName){ 
          String result="";
          try { 
              InputStreamReader inputReader = new InputStreamReader( getResources().getAssets().open(fileName) ); 
              BufferedReader bufReader = new BufferedReader(inputReader);
              String line="";
              while((line = bufReader.readLine()) != null) {
                  result += line;
              }
          } catch (Exception e) { 
              e.printStackTrace(); 
          }
          return result;
      }

 

获得assets文件夹中文件内容

标签:style   blog   color   io   ar   文件   sp   div   on   

原文地址:http://www.cnblogs.com/tianzhijiexian/p/4020255.html

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