码迷,mamicode.com
首页 > 移动开发 > 详细

安卓:assets目录下的文本文件(不受R文件节制)

时间:2016-05-09 18:45:10      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

        try {
            InputStream in = getAssets().open("testAsset.txt");
            byte[] buffer = new byte[1024];
            int len = 0;
            ByteArrayOutputStream baos = new ByteArrayOutputStream();

            while ((len = in.read(buffer)) > 0) {
                baos.write(buffer, 0, len);
            }

            String str = new String(baos.toByteArray(), "GBK");
            ZrLog.log(str);
            in.close();
        } catch (IOException e) {
            e.printStackTrace();
        }

 

安卓:assets目录下的文本文件(不受R文件节制)

标签:

原文地址:http://www.cnblogs.com/AndyHoo/p/5474632.html

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