特定の url:like から画像をダウンロードしたい
http://www.someexample.com/data/adImages/filename.png
以下のコードを使用しましたが、うまくいきません。
def addresss = {
def address = "http://www.exap.com/data/Images/file.png".toURL()
new File("${address.tokenize('/')[-1]}.png").withOutputStream { out ->
new URL(address).withInputStream { from -> out << from; }
}
}
助けが必要。ありがとうございました。