从远程服务器位置下载文件

时间:2015-04-10 13:14:43

标签: java download network-programming

您好我必须从我们的svn服务器位置下载文件。 文件网址是这样的 - https://abc.xyz.com/svn/MyProject/trunk/documents/abc.docx下载。  请帮助下载它。 在此先感谢

1 个答案:

答案 0 :(得分:0)

简单:打开连接并将inputStream复制到目标文件outputStream:

public void downloadFile(String location, File destinationFile) throws IOException
{
    try (FileOutputStream fos = new FileOutputStream( destinationFile )){
        URL url = new URL(location);
        URLConnection connection = url.openConnection();
        IOUtils.copy( connection.getInputStream(),  fos);
    } 
}