Is it possible to copy database file to SD card?(是否可以将数据库文件复制到 SD 卡?)
问题描述
我的 Android 手机上有一个数据库,我需要将信息存入 SD 卡.
I have a database on my Android phone, and I need to get the information onto an SD card.
是否可以将数据库文件以可读状态保存到 SD 卡上?我无法找到有关如何执行此操作的任何信息.
Is it possible to save the database file onto the SD card in a readable state? I haven't been able to find any information on how to do this.
一些将数据库文件复制到 SD 卡的源代码是理想的选择.
Some source code that copies the database file to an SD card would be ideal.
推荐答案
数据库文件和其他文件一样,如果你复制一个二进制文件就可以了.
The database file is just like any other file, if you make a binary file copy it will work.
Java 没有内置的文件复制方法,所以你可以使用这个:
Java has no built in file copy method, so you can use this:
复制文件的标准简洁方式在 Java 中?
请不要忘记添加您的清单权限以写入 SD 卡:
写入 SD 卡的权限
Just don't forget to add your manifest permission to write to the SD card:
Permission to write to the SD card
这篇关于是否可以将数据库文件复制到 SD 卡?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以将数据库文件复制到 SD 卡?
基础教程推荐
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 在螺旋中写一个字符串 2022-01-01