亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-09-13 07:22:33 來源:腳本之家 閱讀:233 作者:jingxian 欄目:移動開發

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卡的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

伊宁县| 尼勒克县| 栾城县| 辰溪县| 林州市| 南宫市| 津南区| 略阳县| 广丰县| 方正县| 嘉义县| 永定县| 水富县| 托克托县| 天水市| 湟中县| 冀州市| 遂川县| 甘洛县| 宁蒗| 四子王旗| 五河县| 梁河县| 察哈| 甘肃省| 静海县| 苗栗市| 深泽县| 蒲城县| 汕头市| 雷州市| 宿松县| 巴林左旗| 蒙自县| 庆云县| 虎林市| 岫岩| 麻城市| 永清县| 惠州市| 天峻县|