Android 操作安装包中的“assets”目录下的文件工具类

这是我在项目中常用到的一些工具,为了怕以后找不到故记录于此。

/**
 * Created by LY on 2015/6/12.
 * 操作安装包中的“assets”目录下的文件
 */


public class AssetsUtils {

    /**
     * read file content
     *
     * @param context   the context
     * @param assetPath the asset path
     * @return String string
     */
    public static String readText(Context context, String assetPath) {
//        LogUtil.d("read assets file as text: " , assetPath);
        try {
            return ConvertUtils.toString(context.getAssets().open(assetPath));
        } catch (Exception e) {
//            LogUtil.e("error",e);
            return "";
        }
    }

}

代码中用的ConvertUtils

你可能感兴趣的:(AndroidUtil汇总,Android工具类,assets)