2

我正在尝试在我的设备上的 SD 上创建一个文件。这在一周前有效,但现在无效,我不明白为什么。

Logcat 打印:

java.io.FileNotFoundException ...pathtofile... (no such file or directory)

因此,该文件没有被创建。我对 android 清单具有正确的权限:

  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>

我以这种方式创建文件:

if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)){
           base = Environment.getExternalStorageDirectory().getAbsolutePath();
       }
   String fname = File.separator +"VID_"+ timeStamp + ".3gp";
       mediaFile = new File(base+fname);

然后我检查它是否存在:

   if(mediaFile.exists()){
           Log.v("mediaFile","ex");
       }else{
           Log.v("mediaFile","no ex");

       }

日志说它不存在。我也尝试过使用 file.createNewFile() 但它不起作用。

所以,一周前它可以工作,现在它不能工作,可能是SD卡的问题????会不会是某种BUG!!!???

谢谢

编辑:更多代码

创建文件的函数是:

private static File getOutputMediaFile()

调用自:

private static Uri getOutputMediaFileUri(){
         return Uri.fromFile(getOutputMediaFile());
   }

并将 mediarecorder 输出设置为:

vMediaRecorder.setOutputFile(getOutputMediaFileUri().toString());

所以,当我做 mediarecorder.prepare() 时:

try {
            vMediaRecorder.prepare();

        } catch (IllegalStateException e) {
            Log.v("RELEASE VIDREC1",e.toString());
            releaseMediaRecorder();
            return false;
        } **catch (IOException e) {
            Log.v("RELEASE VIDREC2",e.toString());
            releaseMediaRecorder();
            return false;**
        }

粗体字是运行的,并打印:

java.io.FileNotFoundException ...pathtofile... (no such file or directory)
4

4 回答 4

1

您只需创建对象 mediaFile,而不是实际文件。用这个:

if(!f.exists()){
  f.createNewFile();
}

我试过这个,对我来说它有效。

final String filename = "file.3gp";
final String path = Environment.getExternalStorageDirectory() + "/" + filename;
File outputfile = new File(path);
if (!outputfile.exists()) {
    try {
        outputfile.createNewFile();
    } 
    catch (IOException e) {
        e.printStackTrace();
    }
}
MediaRecorder recorder = new MediaRecorder();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
recorder.setOutputFile(outputfile.toString());
try {
    recorder.prepare();
    recorder.start();
    /*recorder.stop();
    recorder.reset();
    recorder.release();*/
} 
catch (IllegalStateException e) {
    e.printStackTrace();
} 
catch (IOException e) {
    e.printStackTrace();
}

试试看它是否有效。如果没有,能否添加getOutputMediaFile()的完整代码?

于 2012-10-18T09:13:33.460 回答
1

试试这个

String fname = "VID_"+ timeStamp + ".3gp";

if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED))
{
   mediaFile = new File(android.os.Environment.getExternalStorageDirectory(),fname);
    if(!mediaFile.exists())
    {
         mediaFile.createNewFile();
    }
}

if(mediaFile.exists()){
       Log.v("mediaFile","ex");
   }else{
       Log.v("mediaFile","no ex");

   }
于 2012-10-18T09:15:23.317 回答
0

我在这里的回答:

先打开路径,然后添加文件:

String dir = Environment.getExternalStorageDirectory(); // getAbsolutePath is not requried
File path = new File(dir);
File root = new File(path,  "VID_"+ timeStamp + ".3gp";);
于 2012-10-18T09:19:43.893 回答
0

感谢您的帮助,我已经使用旧代码解决了这个问题。这很奇怪,因为“文件保存”部分没有修改。谢谢大家,有点。

于 2012-10-19T08:18:57.243 回答