我正在尝试从网络服务器下载文件,然后将其保存到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");
问题出在哪里?