exception1 [Selenium/Java] java.io.IOException : Server returned http response code: 403 for url 에러 첨부파일 형식이 아닌 일반 이미지를 다운받아야 해서 아래와 같은 함수를 만들었다. 이미지주소, 다운받을 경로, 이미지파일 이름을 매개변수로 넘겨주고 최종 저장된 이미지 파일(확장자포함)를 반환하는 함수이다. protected String downloadImage(String imgUrl, String downDir, String name) { try { URL url = new URL(imgUrl); URLConnection uc = url.openConnection(); InputStream is = new BufferedInputStream(uc.getInputStream()); FileOutputStream fos = new FileOutputStream(downDir+File.separator+n.. 2024. 1. 16. 이전 1 다음