2017-12-12

【Android】將 assets 的檔案複製到內部儲存空間

參考資料 ----
資料與檔案儲存空間總覽


如果您自己的 app 內有不希望與其他 app 共用的資料檔案,又不要這些私用檔案被編譯進二進位 apk,可將檔案存放在 assets(assets 的用途及用法請另行拜大神)。

但存放在 assets 的檔案是唯讀的,若您需要這些檔案可更新修改,又不希望分享給其他 app,或是不想公開,則需將檔案複製到裝置的內部儲存空間(從内部儲存空間訪問不需要任何權限)。

下面程式搭配了 AsyncTask 使用。


  1.  
  2. public class MainActivity extends Activity
  3. {
  4. private static final String TAG = "MainActivity";
  5. ProgressDialog progdlg;
  6.  
  7. @Override
  8. protected void onCreate(Bundle savedInstanceState)
  9. {
  10. super.onCreate(savedInstanceState);
  11. setContentView(R.layout.activity_main);
  12.  
  13. // 檢查內部儲存空間是否已存在該檔案
  14. File file = getBaseContext().getFileStreamPath("test.zip");
  15. if(file.exists())
  16. Toast.makeText(this, "檔案已存在", Toast.LENGTH_LONG).show();
  17. else
  18. {
  19. // 檔案不存在, 執行 AsyncTask 將檔案自 assets 複製到內部儲存空間
  20. // Toast.makeText(this, "no file", Toast.LENGTH_LONG).show();
  21. new CopyFileTask().execute();
  22. }
  23.  
  24. //
  25. }
  26.  
  27. private class CopyFileTask extends AsyncTask<Void, Void, Void>
  28. {
  29. protected void onPreExecute ()
  30. {
  31. progdlg = ProgressDialog.show(MainActivity.this, "複製檔案練習", "檔案複製中...", true, true);
  32. }
  33.  
  34. @Override
  35. protected Void doInBackground(Void...params)
  36. {
  37. Log.d(TAG, "CopyFileTask begin...");
  38.  
  39. AssetManager manager = getAssets();
  40. String FILENAME = "test.zip";
  41. try
  42. {
  43. FileOutputStream out = openFileOutput("test.zip", Context.MODE_PRIVATE);
  44. InputStream in = getAssets().open("test.zip");
  45. byte[] buffer = new byte[1024];
  46. int read = in.read(buffer);
  47. while (read != -1)
  48. {
  49. out.write(buffer, 0, read);
  50. read = in.read(buffer);
  51. }
  52. out.close();
  53. in.close();
  54. Log.d(TAG, "CopyFileTask end...");
  55. }
  56. catch(IOException e)
  57. {
  58. e.printStackTrace();
  59. }
  60. return null;
  61. }
  62.  
  63. protected void onProgressUpdate(Void... args)
  64. {}
  65.  
  66. protected void onPostExecute(Void args)
  67. {
  68. progdlg.dismiss();
  69. }
  70. }
  71. }
  72.  


檔案在裝置內的位置為

/data/data/完整 package name/files/


開啟 device monitor 看看模擬器





改接實際的裝置,發現是看不到的,第一層的 /data 就無法往下展開。

Acer B1-760HD(Android 5.0.1, API21),執行的結果,複製 1.01 MB (1,067,006 位元組) 的檔案雖然沒花多少時間,但 Google 仍強烈建議 檔案存取 之類的動作不要在主執行緒進行。



相關筆記 ----
AsyncTask - Thread 外的另一選擇