您好,登錄后才能下訂單哦!
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卡的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。