Java - Byte단위의 substring & Character Encoding
substring
String str = "한글byte단위로 자르기";
//str.substring(시작인덱스, 종료인덱스);
String result = str.substring(0, 10);
Byte단위의 substring
- 한글
String str = "한글byte단위로 자르기"; //new String(str.getBytes(), 시작인덱스, 종료인덱스); String result = new String(str.getBytes(), 0, 10);
댓글남기기