91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

吴川市| 宁远县| 合阳县| 华容县| 乐陵市| 乾安县| 肃南| 长治县| 游戏| 平利县| 靖江市| 斗六市| 新兴县| 岳普湖县| 孝感市| 报价| 绍兴县| 佛冈县| 宜川县| 嘉善县| 舞钢市| 聂拉木县| 汉沽区| 宿迁市| 崇仁县| 招远市| 什邡市| 东源县| 焦作市| 大庆市| 大安市| 富锦市| 定兴县| 和田市| 丰都县| 连江县| 博野县| 屏南县| 新竹市| 枞阳县| 鹤山市|