본문 바로가기

IT Tech/Dev-Tools

Intellij 컴파일시 인코딩 문제 한글 깨짐 현상 해결

반응형

■ Intellij 컴파일시 인코딩 오류로 컴파일시 오류 발생하는 경우

  1. File -> Settings 실행
  2. 왼쪽 메뉴에서 Editor -> File Encodings 실행
  3. Global Encoding / Project Encoding 을 UTF-8로 변경
  4. Default encoding for properties files 를 UTF-8로 변
  5. Apply 후 OK 버튼 클릭

       

■ 컴파일/실행시 콘솔에서 한글 깨짐 경우

  1. 메뉴->Help->Edit Custom VM Options실행
  2. Edit Custom Properties 창 나오면 Create 버튼 클릭
  3. 맨 아래에 아래 코드 입력후 저장
    -Dfile.encoding=UTF-8
    -Dconsole.encoding=UTF-8
  4. Intellij 재실행

■ Gradle 컴파일시 깨짐 (위 변경으로 안될때)

  1. build.gradle 에 아래 내용 추가
    compileJava.options.encoding = 'UTF-8'
    
    tasks.withType(JavaCompile) {
        options.encoding = 'UTF-8'
    }
반응형