Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Eclipse
- 티스토리 초대장
- udp
- Database
- iphone
- permgen space
- C#
- UIWebView
- Objective C
- Android
- WebView
- ipad
- Memory
- ios
- jsp
- jQuery
- spring
- java
- 톰켓
- 인코딩
- 메모리
- encoding
- 이클립스
- 한글
- MySQL
- HTML
- JavaScript
- 티스토리 초대
- XML
- Tomcat
Archives
- Today
- Total
목록substring (1)
suroMind
[JAVA]java 한글 자르기
출처 : http://pmguda.com/579 여러 메소드를 사용해 봤지만 아래 메소드는 잘되네요.단 UTF-8환경에서만 테스트 해봤습니다. 인코딩 환경에 따라 다르다고 하는데 일단 되니깐 패스.. public String subStringBytes(String str, int byteLength) { // String 을 byte 길이 만큼 자르기. int retLength = 0; int tempSize = 0; int asc; if(str == null || "".equals(str) || "null".equals(str)){ str = ""; } int length = str.length(); for (int i = 1; i 127) { if (byteLength >= tempSize + 2) ..
IT분야/Java
2013. 2. 26. 12:33