HttpClient 간편 사용
2803 단어 일 하 다
버 전 4. x. x
MAVEN 의존
org.apache.httpcomponents
httpcore
4.x
org.apache.httpcomponents
httpclient
4.x
org.apache.httpcomponents
httpmime
4.x
이루어지다
CloseableHttpClient httpClient = HttpClients.createDefault();
this.localfilename = "E:\\CSVDir\\" + localFile;
serverDirectory = "/" + userName +"/";
try {
HttpPost httpPost = new HttpPost(server);
// String redisKey = "ftp.dicostapartners.com$Hrz8";
// userToken = uploadRedisDao.getUserToken(redisKey);
// // string JSONObject
// JSONObject token = JSONObject.parseObject(userToken);
// String tok = token.getString("Authorization");
//
httpPost.addHeader("Authorization", tok);
// form data
StringBody request = new StringBody("upload", ContentType.TEXT_PLAIN);
StringBody targetdirectory = new StringBody(serverDirectory, ContentType.TEXT_PLAIN);
FileBody upload = new FileBody(new File(this.localfilename));
HttpEntity reqEntity = MultipartEntityBuilder.create().addPart("request", request)
.addPart("targetdirectory", targetdirectory).addPart("upload", upload).build();
httpPost.setEntity(reqEntity);
// httpClient post ,
CloseableHttpResponse httpResponse = httpClient.execute(httpPost);
//
HttpEntity resEntity = httpResponse.getEntity();
logger.info(EntityUtils.toString(resEntity));
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
//
if (null != httpResponse) {
httpResponse.close();
}
if (null != httpClient) {
httpClient.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
인터넷 상에 서 좋 은 httpclient 시 리 즈 를 참고 할 수 있 습 니 다.https://www.cnblogs.com/myitnews/p/12194948.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Java swing drawImagegetImage 가 즉시 돌아 오기 때문에 그림 이 불 러 올 때 까지 기다 리 지 않 고 프로그램 에서 다른 작업 을 수행 할 수 있 습 니 다.성능 을 향상 시 킬 수 있 지만 효과 적 인 프로그램 은 더 많은 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.