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

Android读程序包的资源

时间:2015-06-05 15:35:20      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

    private static final String ENCODING = "utf-8";

    public static String loadText(Context context, String assetFilePath){
        InputStream is = null;
        try {
            is = context.getResources().getAssets().open(assetFilePath);
            String textfile = convertStreamToString(is);
            return textfile;
        } catch (IOException e) {
            e.printStackTrace();
        }

        return null;
    }

    public static String convertStreamToString(InputStream is)
            throws IOException {
        Writer writer = new StringWriter();

        char[] buffer = new char[2048];
        try {
            Reader reader = new BufferedReader(new InputStreamReader(is,
                    ENCODING));
            int n;
            while ((n = reader.read(buffer)) != -1) {
                writer.write(buffer, 0, n);
            }
        } finally {
            is.close();
        }
        String text = writer.toString();
        return text;
    }
}

 

Android读程序包的资源

标签:

原文地址:http://www.cnblogs.com/xbx2015/p/4554654.html

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