复制原始文件到SD卡?原始、文件、SD

2023-09-12 01:21:29 作者:不离不弃纯属童言无忌

我在我的 RES一些音频文件/原文件夹。出于某些原因,我想这个文件复制到我的SD卡时,我的应用程序启动。

I've some audio files in my res/raw folder. For some reasons, i want to copy this files to my SDCard When, my application starts.

我怎么能这样做呢?任何人指导我?

How can i done this? Anyone guide me?

推荐答案

从资源读取,写入SD卡上的文件:

Read from the resource, write to a file on the SD card:

InputStream in = getResources().openRawResource(R.raw.myresource);
FileOutputStream out = new FileOutputStream(somePathOnSdCard);
byte[] buff = new byte[1024];
int read = 0;

try {
   while ((read = in.read(buff)) > 0) {
      out.write(buff, 0, read);
   }
} finally {
     in.close();
     out.close();
}