반응형
Java.io.CharConversionException: Not an ISO 8859-1 character: 한
// 빠진게 있는지 체크할 것.
response.setContentType("text/html; charset=UTF-8"); // 보낼 때 한글 인코딩
response.setCharacterEncoding("UTF-8"); // 받을 때 한글 인코딩
ServletOutputStream out = response.getOutputStream();
// out.println("alert.('한글');"); // println은 오류가 남
// out.println("alert.('한글');".getBytes("UTF-8")); // println은 오류가 남
out.write("alert('한글');".getBytes("UTF-8"));
//println을 쓰고 싶을 때는 ServletOutputStream 대신 PrintWriter를 사용
PrintWriter out = response.getWriter ();
out.println("alert('한글');");
참고 URL
반응형
'오류 해결' 카테고리의 다른 글
log4j.xml 오류 - log4j.dtd 지정된 파일을 찾을 수 없습니다. (0) | 2021.08.19 |
---|---|
Uncaught SyntaxError: Unexpected token [문자] in JSON at position ~ (0) | 2021.07.20 |
ORA-01722: 수치가 부적합합니다 (0) | 2021.07.14 |
ORA-00918: 열의 정의가 애매합니다 (0) | 2021.06.23 |
java.sql.SQLException: ORA-01502: 인덱스 ' ' 또는 인덱스 분할영역은 사용할 수 없은 상태입니다 (0) | 2021.06.23 |
[ORACLE] ORA-28002: the password will expire within 7 days 오류 (0) | 2021.06.23 |
잘못 commit 했을 때 / 데이터가 꼬였을 때 복구 / 10시간 전 데이터로 복구하고 싶을 때 (0) | 2021.06.23 |