1

我正在为 Android 设备开发一个下载所有内容的应用程序,并且由于某种原因抛出 FileNotFoundException 只是几个 URL 给我带来了问题。我打印出 URL 并将其复制到我的浏览器,它在那里工作正常,所以我不知道问题是什么。

例外:

W/System.err(14261): java.io.FileNotFoundException: 
http://feedproxy.google.com/~r/BillBurr/~5/pCkxUgHf5tY/MMPC_9-9-12.mp3

代码(减去大多数异常处理):

URL u = new URL(uri);

HttpURLConnection c = (HttpURLConnection) u.openConnection();
c.setRequestMethod("GET");
c.setDoOutput(true);
c.connect();
c.setReadTimeout(readTimeout);

int totalSize = c.getContentLength();
InputStream in = null;
try {
     in = c.getInputStream(); // Exception problem here 

     byte[] buffer = new byte[1024];
     int len1 = 0;
     ................
4

1 回答 1

2

只需删除c.setDoOutput(true);. 哦!

干杯harism。

于 2012-09-19T21:47:49.577 回答