這裏我code.where是我的錯誤errors.the錯誤的文件,未發現異常。如何獲得原始文件夾的uri路徑並保存在android的內部內存?
Uri video = Uri.parse("android.resource://com.ring.app/raw/"+a[i]+".mp3");
file= new File(video.toString());
try
{
inputStream= new FileInputStream(file);
fos = super.openFileOutput("output"+i+".mp3", MODE_WORLD_READABLE);
byte buffer[]=new byte[1024];
while((len=inputStream.read(buffer))>0)
fos.write(buffer,0,len);
fos.close();
}
檢查[這](http://stackoverflow.com/a/9734268/1172945)答案 – Tugrul
@Androider做u得到您的解決方案? – MAC
@ gtumca-MAC no。我現在搜索 – Androider