MultipartEntityBuilder meb = MultipartEntityBuilder.create(); CloseableHttpClient http = HttpClients.createDefault(); meb.addBinaryBody("file"+iFile, copyFile); //파일명에 한글 있으면 에러. meb.addTextBody(fileNo+".db", fileSavePath); HttpPost post = new HttpPost(targetUrl); post.setEntity(meb.build()); /************* 타켓 URL로 POST 요청 **************/ http.execute(post); http.close();
'언어 > JAVA' 카테고리의 다른 글
[JAVA] PDF 페이지 중간 삭제 (0) | 2020.03.18 |
---|---|
[JAVA] PDF 합치기 (0) | 2020.03.18 |
return void 일때 에러페이지 떨구기. (0) | 2018.12.26 |
[JAVA] 엑셀 파일 읽기 (0) | 2017.03.20 |
[TOSTRING] - contentType (0) | 2016.11.09 |