尝试写入内部存储时出现ENOENT错误

时间:2013-10-23 13:44:09

标签: android storage

我正在尝试从网络服务器下载文件,然后将其保存到data/data中我的应用程序文件夹内的文件夹中。但是,我收到了这个错误:

java.io.FileNotFoundException: /data/data/com.package.name/databases/file: open failed: ENOENT (No such file or directory)

这是我在AsyncTask中的代码(从Download a file with Android, and showing the progress in a ProgressDialog复制而来):

   FileOutputStream output = new FileOutputStream("/data/data/" + getPackageName() + "/databases/file");

问题出在哪里?

0 个答案:

没有答案