我有一个问题,我想在我的主要活动中设置一个铃声,我阅读了这个教程:http ://androidgenuine.com/?tag=set-as-ringtone-android ,但是功能保存不起作用,更多具体我无法创建文件,函数返回false。我只写了一个创建新文件的部分,但即使这部分也不起作用,这是代码,有什么问题(它返回错误并且未创建文件)?
public boolean save2(int ressound){
String path="/sdcard/sounds/";
String filename="ring.mp3";
byte[] buffer = null;
FileOutputStream save;
InputStream fIn = getBaseContext().getResources().openRawResource(ressound);
int size=0;
try {
size=fIn.available();
buffer = new byte[size];
fIn.read(buffer);
fIn.close();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
try {
save = new FileOutputStream(path+filename);
save.write(buffer);
save.flush();
save.close();
return true;
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
}
}
谢谢你的帮助