国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

android 拷貝sqlite數據庫到本地sd卡的方法

2019-12-12 03:24:10
字體:
來源:轉載
供稿:網友

sqlite小型數據庫,在開發的時候用于保存數據,在這不做關于它的介紹,本文只是寫出了怎么拷貝應用的數據到本地sd卡中。如:一個數據庫名為dandy.db的,拷貝到本地中叫seeker.db

代碼如下:

	/**	 * 拷貝數據庫到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();			}		}	}

以上這篇android 拷貝sqlite數據庫到本地sd卡的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 东丰县| 台安县| 驻马店市| 澎湖县| 潜山县| 镇巴县| 深州市| 蓝田县| 札达县| 措美县| 方城县| 栖霞市| 呈贡县| 刚察县| 修武县| 和林格尔县| 铜鼓县| 富顺县| 兰州市| 吉安县| 青河县| 科技| 容城县| 天津市| 汝南县| 广德县| 石狮市| 镇巴县| 上饶县| 房山区| 柘荣县| 浦县| 临朐县| 广昌县| 闽清县| 万宁市| 慈溪市| 榆社县| 洪湖市| 晋中市| 台南县|