我有一个示例代码可以从网上下载一些数据(pdf,gif和mp3)以及它的swing应用程序。它在Windows 7中完美运行但在Windows XP中无效。
我的代码是
public static Float downloadFile(String targetUrl,File filePath)
{
try
{
Integer count=0;
URL url = new URL(targetUrl);
HttpURLConnection connection=(HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.setDoOutput(true);
connection.setConnectTimeout(10000);
connection.connect();
int lenghtOfFile = connection.getContentLength();
Thread.sleep(100);
InputStream input = new BufferedInputStream(url.openStream());
Thread.sleep(100);
OutputStream output = new FileOutputStream(filePath);
byte data[] = new byte[input.available()];
long total = 0;
while ((count = input.read(data)) != -1)
{
total += count;
output.write(data, 0, count);
}
output.flush();
output.close();
input.close();
}
catch (Exception e)
{
e.printStackTrace();
}
return 2.5f;
}
}
通过将代码设置为0
进入无限循环答案 0 :(得分:0)
问:初始化缓冲区时“input.available()”是什么?如果那时恰好是“0”,你会感到难过。
一种解决方案是使用固定长度的缓冲区(例如8192)。