ファイルをダウンロードする必要があるため (例: https://www.betaseries.com/srt/391160 )、Web でさまざまな方法を見つけました。
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 です。どうすれば修正できますか?
少し早いですがお礼を、
ベンジャミン