Android 资源-raw和assets

2016-09-28  本文已影响164人  jacky123

前言

这几天遇到了一个坑!关于resource相关的操作。具体的需求是:替换所有班级的logo,但是移动端android和ios没有建立协议,所以临时采用的是直接上传图片来完成这项任务。当然一个项目有很多人开发,之前的功能已经实现了根据文件的URI来上传具体的File。

问题来了:怎么才能读取到android res 具体的File呢?


认识res

1. res/raw和assets的区别?


解决问题

copy
可以对Android 的 res 和 assets 里面的文件进行拷贝。我封装了两个方法。

/**
 * copy asset to
 *
 * @param context
 * @param fileName
 */
public static void copyAssetsToOutterByFileName(final Context context, final String fileName) {
    //getFilesDir,指/data/data/<包名>/files/
    final File filedir = new File(context.getFilesDir() + "/classlogo");
    if (!filedir.exists()) {
        filedir.mkdir();
    }

    final File file = new File(filedir, fileName);
    if (file.exists()) {
        Logger.t(TAG).i(fileName + "文件存在,无需拷贝");
        return;
    }
    new Thread() {
        @Override
        public void run() {
            InputStream is = null;
            OutputStream fos = null;
            try {
                is = context.getAssets().open(fileName);
                fos = new FileOutputStream(file);
                //缓存
                byte[] b = new byte[2 * 1024];
                int len;        //每次读的字节数
                while ((len = is.read(b)) != -1) {
                    if (fos != null) {
                        fos.write(b, 0, len);
                    }
                }
                fos.close();
                is.close();
                Logger.t(TAG).i(fileName + "文件拷贝完成");
            } catch (IOException e) {
                Logger.t(TAG).i(fileName + "文件拷贝失败");
                e.printStackTrace();
            } finally {
                closeQuietly(fos);
                closeQuietly(is);
            }
        }
    }.start();
}

/**
 * @param context
 * @param fileName
 * @param type     "drawable" "raw"
 */
public static void copyResToOutterByFileName(final Context context, final String fileName, final String type) {
    //getFilesDir,指/data/data/<包名>/files/
    final File filedir = new File(context.getFilesDir() + "/classlogo");
    if (!filedir.exists()) {
        filedir.mkdir();
    }

    final File file = new File(filedir, fileName);
    if (file.exists()) {
        Logger.t(TAG).i(fileName + "文件存在,无需拷贝");
        return;
    }
    new Thread() {
        @Override
        public void run() {
            InputStream is = null;
            OutputStream fos = null;
            try {
                int resId = context.getResources().getIdentifier(fileName, type, context.getPackageName());
                is = context.getResources().openRawResource(resId);
                fos = new FileOutputStream(file);
                //缓存
                byte[] b = new byte[2 * 1024];
                int len;        //每次读的字节数
                while ((len = is.read(b)) != -1) {
                    if (fos != null) {
                        fos.write(b, 0, len);
                    }
                }
                fos.close();
                is.close();
                Logger.t(TAG).i(fileName + "文件拷贝完成,文件地址:" + file.getAbsolutePath());
            } catch (IOException e) {
                Logger.t(TAG).i(fileName + "文件拷贝失败");
                e.printStackTrace();
            } finally {
                closeQuietly(fos);
                closeQuietly(is);
            }
        }
    }.start();
}
上一篇下一篇

猜你喜欢

热点阅读