Java,将输入流保存到文件需要几个小时
Java, save inputstream to file takes hours
我在保存套接字的输出时遇到问题。我有一个来自套接字的输入流,我正试图将它保存到一个文件中。打印输出效果很好,我立即得到输出,但如果我尝试将其保存到文件中,则需要数小时。
我尝试了不同的方法来加快这个过程,但仍然需要很长时间。任何想法?
private InputStream in;
@Override
public InputStream sendRequest(Socket socket, String method, String host, String path){
try {
pw = new PrintWriter(socket.getOutputStream(), true);
pw.println(method.toUpperCase() + " /" +path + " HTTP/1.1");
pw.println("Host: "+host);
pw.println();
pw.flush();
System.out.println("start saving");
saveFile(socket.getInputStream(), FileHandling.createPath(host, path));
} catch (IOException e) {
System.err.println(e.toString());
}
return null;
}
public void saveFile(InputStream in, String path){
try{
Files.copy(in, Paths.get(path));
}catch(IOException ex){
System.err.println(ex.toString());
}
}
从你的代码中我了解到套接字使用 HTTP 协议。
在这种情况下,我建议您使用 Apache HTTP 组件 [1]:它们做得很好。
使用 [1] 可以获得输入流,使用 Apache Commons IO [2] 可以写入文件。
示例:https://gist.github.com/alessandro-aglietti/ae1cd5703a56f1bc21b2
[1] http://hc.apache.org/
[2] http://commons.apache.org/proper/commons-io/
我在保存套接字的输出时遇到问题。我有一个来自套接字的输入流,我正试图将它保存到一个文件中。打印输出效果很好,我立即得到输出,但如果我尝试将其保存到文件中,则需要数小时。
我尝试了不同的方法来加快这个过程,但仍然需要很长时间。任何想法?
private InputStream in;
@Override
public InputStream sendRequest(Socket socket, String method, String host, String path){
try {
pw = new PrintWriter(socket.getOutputStream(), true);
pw.println(method.toUpperCase() + " /" +path + " HTTP/1.1");
pw.println("Host: "+host);
pw.println();
pw.flush();
System.out.println("start saving");
saveFile(socket.getInputStream(), FileHandling.createPath(host, path));
} catch (IOException e) {
System.err.println(e.toString());
}
return null;
}
public void saveFile(InputStream in, String path){
try{
Files.copy(in, Paths.get(path));
}catch(IOException ex){
System.err.println(ex.toString());
}
}
从你的代码中我了解到套接字使用 HTTP 协议。
在这种情况下,我建议您使用 Apache HTTP 组件 [1]:它们做得很好。
使用 [1] 可以获得输入流,使用 Apache Commons IO [2] 可以写入文件。
示例:https://gist.github.com/alessandro-aglietti/ae1cd5703a56f1bc21b2
[1] http://hc.apache.org/ [2] http://commons.apache.org/proper/commons-io/