我有一個cheerapp.mp3
在我/res/raw
文件夾的Android資源文件
所以我的代碼是
String filepath="/res/raw/cheerapp"; //or cheerapp.mp3
file = new File(filePath);
FileInputStream in = null;
try {
in = new FileInputStream(file);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我得到了文件未找到錯誤。爲什麼?
在此處發佈您的錯誤 – 2013-02-26 03:52:18