반응형
JAVA로
HttpServletRequest를 받을 때 charset을 설정하는 방법
request.setCharaterEncoding("charset이름");
@RequestMapping(method = RequestMethod.POST,path = "/result")
public String result(HttpServletRequest request, HttpServletResponse response,Model model) {
try {
request.setCharacterEncoding("EUC-KR");
HashMap<String, String> map = new HashMap<>();
map.put("P_STATUS", request.getParameter("P_STATUS"));
map.put("P_RMESG1", request.getParameter("P_RMESG1"));
}catch(Exception e){
e.printStackTrace();
}
return "form";
}
반응형
'코딩 관련 > Java' 카테고리의 다른 글
[Java] 업로드 파일의 MIME 타입 확인 / 파일 mime type 확인 (0) | 2023.08.22 |
---|---|
[JAVA] Controller 응답으로 client 페이지 redirect 시키기 (0) | 2023.06.09 |
[JAVA] HttpsURLConnection 사용하기 / API 호출 / http 통신 / java http 호출 / java http (0) | 2022.12.27 |
[JAVA] API 호출하기 / URI 요청하기 / URI 생성하기 (0) | 2022.06.03 |
[JAVA] java object to JSON / object를 json으로 변환 / json 파싱 / JSON Object 사용 / JSON Array add (0) | 2022.05.27 |