我试图将mp3文件保存到我的应用程序res/raw/
文件夹中,但我不知道如何执行此操作..
当按钮为clicked
OnClickListener button2 = new OnClickListener(){
@Override
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("file/*");
int YOUR_RESULT_CODE = 0;
intent.getData();
startActivityForResult(intent, YOUR_RESULT_CODE);
}
};
那是因为我想使用文件浏览器来选择我的.mp3文件类型
现在我如何将所选文件保存到特定文件夹(res / raw)into
我的application
public File getTempFile(Context context, String url) {
//should i add something here?
File file1 = null;
try {
String FileName = Uri.parse(url).getLastPathSegment();
file1 = File.createTempFile(FileName, null, context.getCacheDir());
}
catch (IOException e) {
}
return file1;
}
如果您的示例包含code
,我将不胜感激
提前谢谢:)