在Android中保存音频文件时,请提供特定的预定义名称

时间:2015-04-18 15:42:07

标签: android file save

如何使用预定义的名称将文件保存到外部存储,例如myfile_date.mp4?

1 个答案:

答案 0 :(得分:0)

对于外部存储,我们使用基本智能做这样的事情..:

private String getFilename()
    {
        String timeStamp = new SimpleDateFormat("ddMMYYYY").format(new Date());
        String MySound = "MySound";
        String DefinedName = MySound+timeStamp;


filepath = Environment.getExternalStorageDirectory().getPath();
file = new File(filepath,AUDIO_RECORDER_FOLDER);

if(!file.exists()){
    file.mkdirs();
}

return (file.getAbsolutePath() + "/" + DefinedName + file_exts[currentFormat]);

}