some characters cannot be mapped using "ISO-8859-1" character encoding.
Either change the encoding or remove the characters which are not supported
by the "ISO-8859-1" character encoding.
개요 : 다른페이지의 소스를 가져와서 이클립스에 붙여넣기를 했는데 해당 오류 발생.
원인 : 이클립스에서 사용하는 기본 문자셋이 ISO-8859-1 이기 때문에 발생.
해결 : 작업하던 파일은 JSP 파일이라 최상단에 아래 태그를 설정하니 문제 해결
1 | <%@ page language="java" contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%> | cs |
반응형
댓글