3

我当前的 Android 应用程序下载了许多音频文件。当我使用此代码执行下载时,我得到文件未找到异常:

try {

    final URL downloadFileUrl = new URL("http://filelocation/url.m4a");
    final HttpURLConnection httpURLConnection = (HttpURLConnection) downloadFileUrl.openConnection();
    httpURLConnection.setRequestMethod("GET");
    httpURLConnection.setDoOutput(true);
    httpURLConnection.setConnectTimeout(10000);
    httpURLConnection.setReadTimeout(10000);
    httpURLConnection.connect();

    mTrackDownloadFile = new File(Record.this.getCacheDir(), "mediafile");
    mTrackDownloadFile.createNewFile();
    final FileOutputStream fileOutputStream = new FileOutputStream(mTrackDownloadFile);
    final byte buffer[] = new byte[16 * 1024];

    final InputStream inputStream = httpURLConnection.getInputStream();

    int len1 = 0;
    while ((len1 = inputStream.read(buffer)) > 0) {
        fileOutputStream.write(buffer, 0, len1);
    }
    fileOutputStream.flush();
    fileOutputStream.close();

} catch (final Exception exception) {
    Log.i(TAG, "doInBackground - exception" + exception.getMessage());
    exception.printStackTrace();
    mTrackDownloadFile = null;
}

当我使用此代码时,它工作正常:

try {

    final URL downloadFileUrl = new URL("http://filelocation/url.m4a");
    final URLConnection urlConnection = downloadFileUrl.openConnection();

    mTrackDownloadFile = new File(PlayOpponent.this.getCacheDir(), "mediafile");
    mTrackDownloadFile.createNewFile();
    final FileOutputStream fileOutputStream = new FileOutputStream(mTrackDownloadFile);
    final byte buffer[] = new byte[16 * 1024];

    final InputStream inputStream = urlConnection.getInputStream();

    int len1 = 0;
    while ((len1 = inputStream.read(buffer)) > 0) {
        fileOutputStream.write(buffer, 0, len1);
    }
    fileOutputStream.flush();
    fileOutputStream.close();
} catch (final Exception exception) {
    Log.i(TAG, "doInBackground - exception" + exception.getMessage());
    exception.printStackTrace();
    mTrackDownloadFile = null;
}

有人可以指出我哪里出错了吗?

4

1 回答 1

4

根据这个博客删除

httpURLConnection.setDoOutput(true);

在您的代码中可能会解决问题。据说是ICS问题。

于 2012-11-13T15:37:54.110 回答