我是靠谱客的博主 魁梧云朵,最近开发中收集的这篇文章主要介绍Android读取asset目录的文件转File,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

直接调用writeBytesToFile: 
writeBytesToFile(getActivity().getAssets().open("xxx文件名"),file);

public static void writeBytesToFile(InputStream is, File file) throws IOException{
    FileOutputStream fos = null;
    try {  
        byte[] data = new byte[2048];
        int nbread = 0;
        fos = new FileOutputStream(file);
        while((nbread=is.read(data))>-1){
            fos.write(data,0,nbread);              
        }
    }
    catch (Exception ex) {
        logger.error("Exception",ex);
    }
    finally{
        if (fos!=null){
            fos.close();
        }
    }
}

最后

以上就是魁梧云朵为你收集整理的Android读取asset目录的文件转File的全部内容,希望文章能够帮你解决Android读取asset目录的文件转File所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部