IT Tech/Dev-Tools
2020. 10. 1.
Intellij 컴파일시 인코딩 문제 한글 깨짐 현상 해결
■ Intellij 컴파일시 인코딩 오류로 컴파일시 오류 발생하는 경우 File -> Settings 실행 왼쪽 메뉴에서 Editor -> File Encodings 실행 Global Encoding / Project Encoding 을 UTF-8로 변경 Default encoding for properties files 를 UTF-8로 변 Apply 후 OK 버튼 클릭 ■ 컴파일/실행시 콘솔에서 한글 깨짐 경우 메뉴->Help->Edit Custom VM Options실행 Edit Custom Properties 창 나오면 Create 버튼 클릭 맨 아래에 아래 코드 입력후 저장 -Dfile.encoding=UTF-8 -Dconsole.encoding=UTF-8 Intellij 재실행 ■ Gradle ..