hello world
HttpClient Post로 전송시 한글 깨짐 현상 본문
728x90
httpEntity에 json데이터 넣고 httpPost객체에 setEntity 해서 보내는 과정에서
HttpPost를 이용하여 한글 값을 전달시 한글 깨짐 현상을 발견했다.
1. request.addHeader("Content-Type", "application/json;charset=UTF-8");
---> charset=UTF-8 을 추가했으나 해결되지 않음
2. HttpEntity entity = new StringEntity(parameters.toString())
---> HttpEntity entity = new StringEntity(param.toString(), "UTF-8"); : 해결
'WEB > error_log' 카테고리의 다른 글
이클립스 TLS10 is not accepted by client preferences [TLS12] 오류 (1) | 2021.07.01 |
---|---|
자바 파일 업로드 익스플로러 에러 .json을 열거나 저장하시겠습니까 (0) | 2020.03.06 |
No mapping found for HTTP request with URI ... (0) | 2020.01.07 |
자바 파일(이미지 업로드) 업로드시 파일 경로 지정 (0) | 2020.01.03 |
[Tomcat 에러]Several ports (8080, 8009) required by Tomcat v8.0 Server at localhost are already.. (0) | 2020.01.03 |
Comments