Android複製Assets目錄下的檔案到指定目錄

來源:互聯網
上載者:User

標籤:

 1     package com.android.demo; 2  3   import java.io.File; 4   import java.io.FileOutputStream; 5   import java.io.InputStream; 6   import android.content.Context; 7   public class CopyFileFromAssets { 8   /** 9   *10   * @param myContext11   * @param ASSETS_NAME 要複製的檔案名稱12   * @param savePath 要儲存的路徑13   * @param saveName 複製後的檔案名稱14   * testCopy(Context context)是一個測試例子。15   */16   public static void copy(Context myContext, String ASSETS_NAME,17   String savePath, String saveName) {18   String filename = savePath + "/" + saveName;19   File dir = new File(savePath);20   // 如果目錄不中存在,建立這個目錄21   if (!dir.exists())22   dir.mkdir();23   try {24   if (!(new File(filename)).exists()) {25   InputStream is = myContext.getResources().getAssets()26   .open(ASSETS_NAME);27   FileOutputStream fos = new FileOutputStream(filename);28   byte[] buffer = new byte[7168];29   int count = 0;30   while ((count = is.read(buffer)) > 0) {31   fos.write(buffer, 0, count);32   }33   fos.close();34   is.close();35   }36   } catch (Exception e) {37   e.printStackTrace();38   }39   }40   public void testCopy(Context context) {41   String path=context.getFilesDir().getAbsolutePath();42   String name="test.txt";43   CopyFileFromAssets.copy(context, name, path, name);44   }45   }

(轉:http://bbs.9ria.com/thread-232474-1-1.html)

Android複製Assets目錄下的檔案到指定目錄

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.