我尝试下载文件时出错

时间:2011-03-09 22:06:01

标签: android file download

我在网上找到了这个源代码并对其进行了一些修改。但我得到一个错误说:java.io.FileNotFoundException /data/datafile.zip。 我该怎么办才能让它运转起来?我是否必须先创建文件?

谢谢Sigurd

private Thread checkUpdate = new Thread() {
    public void run() {
        try {
            long startTime = System.currentTimeMillis();
            Log.d("Zip Download", "Start download");
            File file = new File(Environment.getDataDirectory(), "datafil.zip");
            Log.d("Zip Download", file.getAbsolutePath());

            URL updateURL = new URL("http://dummy.no/bilder/bilder/XML_Item_Expo_01.zip");
            URLConnection conn = updateURL.openConnection();
            InputStream is = conn.getInputStream();
            BufferedInputStream bis = new BufferedInputStream(is);
            ByteArrayBuffer baf = new ByteArrayBuffer(50);

            int current = 0;
            while((current = bis.read()) != -1){
                baf.append((byte)current);
            }

            /* Convert the Bytes read to a String. */
            FileOutputStream fos = new FileOutputStream(file);
            fos.write(baf.toByteArray());
            fos.close();
            Log.d("Zip Download", "download ready in" + ((System.currentTimeMillis() - startTime) / 1000) + " sec");
        } catch (Exception e) {
            Log.d("Zip Download", "Error: " + e);
        }
    }
};

2 个答案:

答案 0 :(得分:1)

似乎是权限错误。你可能写错了地方。请在下面的链接中查看答案,

Data directory has no read/write permission in Android

答案 1 :(得分:1)

Environment.getDataDirectory()不会返回您可以放置​​文件的路径。您应该使用以下方法之一:

  • Environment.getExternalStorageDirectory()为您提供了外部存储(SD卡)的路径。
  • 来自活动或其他上下文的
  • getFilesDir()。提供应用程序内部文件存储的路径

您也可以使用字符串文件名(无路径,只是文件)调用openFileOutput(),这将打开FileOutputStream并一次性创建文件供您使用。

希望有帮助!