Groovy download image from URL

后端 未结 3 1447
感动是毒
感动是毒 2021-02-07 14:59

I am wondering what the proper way to go about downloading the image from this RUL would be: http://www.hidemyass.com/proxy-list/img/port/7018246/1

The way I tried downl

3条回答
  •  悲&欢浪女
    2021-02-07 15:18

    Does this work? I believe it should:

    public void download(def address) {
      new File("${address.tokenize('/')[-1]}.png").withOutputStream { out ->
        out << new URL(address).openStream()
      }
    }
    

提交回复
热议问题