gpt4 book ai didi

android - 如何在内部存储Android中保存音频文件

转载 作者:行者123 更新时间:2023-12-03 02:28:58 26 4
gpt4 key购买 nike

我想知道如何在Android设备的内部存储中保存音频文件。具体来说,我希望我的应用程序记录麦克风的声音,以将此文件保存在内部存储中。我知道对于外部存储,有一些类似的东西:

outputFile = Environment.getExternalStorageDirectory()+"/myrecord.3gpp";

内部存储也有类似的东西吗?
谢谢!

最佳答案

使用 getFilesDir()

SDCardpath = getFilesDir();
myDataPath = new File(SDCardpath.getAbsolutePath()
+ "/.My Recordings");

// mydir = context.getDir("media", Context.MODE_PRIVATE);
if (!myDataPath.exists())
myDataPath.mkdir();


audiofile = new File(myDataPath + "/" + fileName);

有关更多信息,请参见 Using the Internal Storage

关于android - 如何在内部存储Android中保存音频文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30661338/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com