如何保存内部存储中记录的音频

时间:2018-05-18 09:03:12

标签: android android-mediarecorder android-internal-storage

我正在处理的android应用程序;它有录音选项;我希望它将新的音频录制文件保存在设备的内部存储器中,这样除非用户打开我的应用程序,否则用户和其他应用程序都无法访问这些录制的音频文件。

我的主要努力是能够将该音频文件保存在内部存储中:我花了很多时间在我的Android编程书籍中查看,并在此处阅读一些问题和答案:How to save an audio file in internal storage androidhttps://developer.android.com/guide/topics/data/data-storage#filesInternal以及https://www.tutorialspoint.com/android/android_internal_storage.htm但不幸的是,我从那里得到的东西根本没有解决我的问题。

我用来记录的代码如下:

        private MediaRecorder rec;
        private String file_folder="/scholar/";


          String 
          file_path=Environment.getExternalStorageDirectory().getPath();

            File file= new File(file_path,file_folder);

            Long date=new Date().getTime();
            Date current_time = new Date(Long.valueOf(date));

            rec=new MediaRecorder();

            rec.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
            rec.setAudioChannels(1);
            rec.setAudioSamplingRate(8000);
            rec.setAudioEncodingBitRate(44100);
            rec.setOutputFormat(MediaRecorder.AudioEncoder.AMR_NB);
            rec.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

            if (!file.exists()){
                file.mkdirs();
            }
            /*the file here this one:File file= new File(file_path,file_folder);
            it means the value of the outputfile is the one which will be provided by 
            rec.setOutputFile() method, so it will be saved as this name: 

            file.getAbsolutePath()+"/"+"_"+current_time+".amr"

            */
            rec.setOutputFile(file.getAbsolutePath()+"/"+"_"+current_time+".amr");

            try {
                rec.prepare();
            } catch (IOException e) {
                e.printStackTrace();
                Toast.makeText(Recording_Service.this,"Sorry! file creation failed!",Toast.LENGTH_SHORT).show();
                return;
            }
            rec.start();

               rec.stop();
               rec.reset();

不幸的是,我在那里做的是将文件保存在外部存储器上,这意味着在录制后,文件对设备文件浏览器中的每个人都可见,他们甚至可以删除文件。

原来如此!拜托,我需要你的帮助,如果有任何帮助,我会很感激。谢谢!

1 个答案:

答案 0 :(得分:0)

我找到了这个问题的答案,我使用了getFilesDir();

       private MediaRecorder rec;
       String file_path=getApplicationContext().getFilesDir().getPath();

            File file= new File(file_path);

            Long date=new Date().getTime();
            Date current_time = new Date(Long.valueOf(date));

            rec=new MediaRecorder();

            rec.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
            rec.setAudioChannels(1);
            rec.setAudioSamplingRate(8000);
            rec.setAudioEncodingBitRate(44100);
            rec.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
            rec.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

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

            String file_name=file+"/"+current_time+".3gp";
            rec.setOutputFile(file_name);

         try {
                    rec.prepare();
                } catch (IOException e) {
                    e.printStackTrace();
                    Toast.makeText(Recording_Service.this,"Sorry! file creation failed!"+e.getMessage(),Toast.LENGTH_SHORT).show();
                    return;
                }
                rec.start();

           rec.stop();
           rec.reset();

感谢所有试图帮助我解答的人。让我们继续享受编码,让我们的世界更加愉快和愉快。