/**
* 拷贝数据库到sd卡
*
* @deprecated <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
*/
public static void copyDataBaseToSD(){
if (!Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) {
return ;
}
File dbFile = new File(MvpApplication.getApplication().getDatabasePath("dandy")+".db");
File file = new File(Environment.getExternalStorageDirectory(), "seeker.db");
FileChannel inChannel = null,outChannel = null;
try {
file.createNewFile();
inChannel = new FileInputStream(dbFile).getChannel();
outChannel = new FileOutputStream(file).getChannel();
inChannel.transferTo(0, inChannel.size(), outChannel);
} catch (Exception e) {
LogUtils.e(TAG, "copy dataBase to SD error.");
e.printStackTrace();
}finally{
try {
if (inChannel != null) {
inChannel.close();
inChannel = null;
}
if(outChannel != null){
outChannel.close();
outChannel = null;
}
} catch (IOException e) {
LogUtils.e(TAG, "file close error.");
e.printStackTrace();
}
}
}
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有