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

Android读取src下的文件

时间:2015-08-28 13:34:20      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:android   src   

1.从src目录下,读取文本文件内容   

 public static String inputStreamToString(Class _class, String metadataFileName) throws IOException {

       InputStream in = _class.getResourceAsStream(metadataFileName);

        StringBuffer out = new StringBuffer();
        byte[] b = new byte[4096];
        for (int n; (n = in.read(b)) != -1;) {
            out.append(new String(b, 0, n));
        }
        return out.toString();

    }


2.从src目录下,读取icon

    public static byte[] getIconData(Class clazz, String file) {
        try {
            InputStream input = clazz.getResourceAsStream(file);
            ByteArrayOutputStream output = new ByteArrayOutputStream();
            byte[] buffer = new byte[4096];
            int n = 0;
            while (-1 != (n = input.read(buffer))) {
                output.write(buffer, 0, n);
            }
            return output.toByteArray();
        } catch (IOException err) {
            err.printStackTrace();
        }
        return null;
    }

版权声明:本文为博主原创文章,未经博主允许不得转载。

Android读取src下的文件

标签:android   src   

原文地址:http://blog.csdn.net/sweiqin/article/details/48047927

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