国产探花免费观看_亚洲丰满少妇自慰呻吟_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卡的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 利津县| 兴城市| 新宁县| 梅州市| 剑川县| 临泉县| 夏河县| 于都县| 天全县| 沈阳市| 蒙山县| 正阳县| 渭南市| 灵石县| 海阳市| 衡水市| 深州市| 南宁市| 浦江县| 庄河市| 西充县| 万安县| 紫云| 麦盖提县| 大余县| 启东市| 海南省| 江永县| 泗水县| 封丘县| 会泽县| 嘉黎县| 托克逊县| 兴化市| 永清县| 什邡市| 海兴县| 石楼县| 怀化市| 文昌市| 洛宁县|