标签: android
String FILENAME = "hello_file"; String string = "hello world!"; FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE); fos.write(string.getBytes()); fos.close();
我正在使用此代码,但不了解如何转换mp3文件并将其保存在手机存储中