博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android将asseet当中的数据库文件拷到程序目录
阅读量:5809 次
发布时间:2019-06-18

本文共 1670 字,大约阅读时间需要 5 分钟。

/**         * 将asseet当中的数据库文件拷到程序目录         * @param activity        当前Activity         * @param filePath        你的程序目录        getApplicationContext().getFilesDir().getAbsolutePath();         * @param fileName        你的数据库名称         */        public static void copyEmbassy2Databases(Activity activity, String filePath, String fileName) {                System.out.println("-->copyEmbassy2Databases");                File oldfile = new File(filePath, fileName);                if (oldfile.exists())                        oldfile.delete();                File file = new File(filePath, fileName);                if (file.exists())                        return;                file.getParentFile().mkdirs();                InputStream in = null;                OutputStream out = null;                try {                        out = new FileOutputStream(file);                        byte[] buff = new byte[1024];                        int len = 0;                        in = activity.getAssets().open(fileName);                        while ((len = in.read(buff)) > 0) {                                out.write(buff, 0, len);                        }                        out.flush();                        in.close();                } catch (IOException e) {                        e.printStackTrace();                } finally {                        try {                                if (out != null)                                        out.close();                        } catch (IOException e) {                                e.printStackTrace();                        }                }        }

 

转载于:https://www.cnblogs.com/spadd/p/4435672.html

你可能感兴趣的文章
d3 v4实现饼状图,折线标注
查看>>
微软的云策略
查看>>
Valid Parentheses
查看>>
【ES6】数值的扩展
查看>>
性能测试之稳定性测试
查看>>
ES6的 Iterator 遍历器
查看>>
2019届高二(下)半期考试题(文科)
查看>>
【REDO】删除REDO LOG重做日志组后需要手工删除对应的日志文件(转)
查看>>
nginx 301跳转到带www域名方法rewrite(转)
查看>>
AIX 配置vncserver
查看>>
windows下Python 3.x图形图像处理库PIL的安装
查看>>
【IL】IL生成exe的方法
查看>>
network
查看>>
SettingsNotePad++
查看>>
centos7安装cacti-1.0
查看>>
3个概念,入门 Vue 组件开发
查看>>
没有JS的前端:体积更小、速度更快!
查看>>
数据指标/表现度量系统(Performance Measurement System)综述
查看>>
GitHub宣布推出Electron 1.0和Devtron,并将提供无限制的私有代码库
查看>>
Angular2, NativeScript 和 React Native比较[翻译]
查看>>