您好我必须从我们的svn服务器位置下载文件。 文件网址是这样的 - https://abc.xyz.com/svn/MyProject/trunk/documents/abc.docx下载。 请帮助下载它。 在此先感谢
答案 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);
}
}