카테고리 없음2010. 10. 29. 21:46
웹서버에서 이미지 파일 다운로드 받기
new File("downloadedimg.jpg").withOutputStream { os -> new URL("http://server/img_uri.jpg").withInputStream { is -> os << is } } 
Posted by jintopark