当我尝试下载文件时(在这种情况下它只是一个图像但实际应用程序是一种更新机制),InputStream
似乎冻结在read
上。我很确定我的代码没问题,所以我想知道为什么会这样,如果它只是在我的电脑上。有人可以运行这个吗?请注意,Timer
仅用于调试目的。
谢天谢地。
以下是显示问题的视频:Video
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.*;
import java.net.URL;
import javax.swing.Timer;
public class FileDownloader {
public final static int BUFFER_LENGTH = 1 << 14;
private static Timer timeoutTimer = new Timer(5000, new ActionListener(){
@Override
public void actionPerformed(ActionEvent e) {
System.out.println("Timeout");
System.exit(0);
}
});
public static void main(String [] args) throws Exception{
URL url = new URL("http://host.trivialbeing.org/up/tdk-aug3-jokr-high-res-2.jpg");
download(url, new File("joker.jpg"));
}
public static void download(final URL url, final File dest) throws IOException {
FileOutputStream fos = new FileOutputStream(dest);
BufferedOutputStream out = new BufferedOutputStream(fos);
BufferedInputStream in = new BufferedInputStream(url.openStream());
byte[] buf = new byte[BUFFER_LENGTH];
int bytesRead;
int bytesWritten = 0;
timeoutTimer.start();
while ((bytesRead = in.read(buf, 0, BUFFER_LENGTH)) != -1) {
timeoutTimer.restart();
out.write(buf, 0, bytesRead);
out.flush();
bytesWritten += bytesRead;
System.out.println(bytesWritten / 1024 + " kb written");
}
in.close();
out.close();
System.out.println("Finished");
fos.close();
}
}
答案 0 :(得分:5)
您面临的问题是由Java 7引起的 - 详细说明要为IPv6提供比IPv4更高的优先级。
您可以通过设置系统属性System.setProperty("java.net.preferIPv4Stack", "true");
此问题影响所有基于Java的软件,但仅在某些计算机上发生(可能取决于所使用的Internet连接):Downloads stops - “TCP Window Full”
答案 1 :(得分:0)
O.K我认为这是一个迟滞的系统,或者是那个回答我的人(罗伯特,我认为) 但如果你已经很多没有关于ipv4的话,使用ipv6会很难。
只是一个coincedence我叫罗伯特:)