创建新文件vs createTempFile



我想创建一个文件,并将URI设置为我的imageView,像这样:

// this code will work, but it will generate a random number at the end of my file
f = File.createTempFile(image, JPEG_FILE_SUFFIX, getAlbumDir());
// this will result with an exception at imageView.setImageURI()
f = new File(getAlbumDir(), image + JPEG_FILE_SUFFIX);
imageView.setImageURI(Uri.fromFile(f));

这里有一个例外:

01-02 15:19:06.575: W/ImageView(26097): Unable to open content: file:///storage/sdcard0/dcim/myapp/20000102_151858_.jpg
01-02 15:19:06.575: W/ImageView(26097): java.io.FileNotFoundException: /storage/sdcard0/dcim/myapp/20000102_151858_.jpg: open failed: ENOENT (No such file or directory)

因为我想去掉图像名称末尾的随机数。我怎样才能使new File()起作用?

如何使new File()工作?

它确实可以工作,但它不会在二级存储上创建文件。它只是在内存中创建了一个File对象。因此,在第二种情况下,根本没有创建文件。

如果要创建空文件,调用f.createNewFile()。您可能不想这样做:您可能想通过new FileOutputStream(f).

将一些内容放入其中。

相关内容

  • 没有找到相关文章

最新更新