我需要下载一个文件(例如:https ://www.betaseries.com/srt/391160 ),所以我在网上找到了不同的方法:
def download(String remoteUrl, String localUrl)
{
def file = new FileOutputStream(localUrl)
def out = new BufferedOutputStream(file)
out << new URL(remoteUrl).openStream()
out.close()
}
或者
def download(String remoteUrl, String localUrl) {
new File("$localUrl").withOutputStream { out ->
new URL(remoteUrl).withInputStream { from -> out << from; }
}
}
我看到文件已创建但文件大小始终等于 1KB 我该如何修复它?
预先感谢,
本杰明