리눅스 - 자바에서 한글 깨질때
1. Test.java 소스
[root@image01 wsloader]# cat Test.java
import java.io.*;
public class Test {
public static void main(String[] args) throws Exception {
System.out.println("file.encoding="+System.getProperty("file.encoding"));
System.out.println("테스트");
}
}
2.테스트
[root@image01 wsloader]# env | grep LANG
LANG=ko_KR.eucKR
[root@image01 wsloader]# javac Test.java
[root@image01 wsloader]# java Test
file.encoding=EUC-KR
테스트
[root@image01 wsloader]# export LANG=c
[root@image01 wsloader]# java Test
file.encoding=ANSI_X3.4-1968
???
[root@image01 wsloader]# export LANG=ko_KR.eucKR
[root@image01 wsloader]# java Test
file.encoding=EUC-KR
테스트