Eclipse 로 생성한 ant build.xml 인코딩 설정하기

Eclipse 에서는 기본적으로 Java 프로젝트를 ant 빌드파일(build.xml)을 export 하여 생성할 수 있다.

하지만 생성된 build.xml 에는 컴파일시 인코딩 옵션이 빠져있다.

.java 파일이 utf-8 로 인코딩 된경우, build.xml 로 ant 를 실행하면 "unmappable character for encoding MS949... " 과 같이 컴파일시 인코딩 에러가 발생할 수 있다.



[해결방법]

build.xml 에서 아래와 같이 javac 속성에 encoding 을 추가한다.

... 생략

<javac encoding="utf-8" debug="true" debuglevel="${debuglevel}" destdir="bin" source="${source}" target="${target}">

... 생략




comments:

댓글 쓰기