13372
2016-03-23 15:47:51
0
http://stackoverflow.com/questions/12659417/why-does-javas-string-getbytes-uses-iso-8859-1
The parameterless String.getBytes() method doesn't use ISO-8859-1 by default. It will use the default platform encoding, if that can be determined. If, however, that's either missing or is an unrecognized encoding, it falls back to ISO-8859-1 as a "default default".
https://docs.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html
8859_1은 인식하지 못해 failback으로 euc-kr로 해석했을 것으로 보입니다.