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 |
Tags
- Tomcat
- JavaScript
- Memory
- XML
- ios
- UIWebView
- 인코딩
- permgen space
- jQuery
- 메모리
- spring
- 이클립스
- 한글
- encoding
- Android
- WebView
- 톰켓
- java
- jsp
- Database
- 티스토리 초대
- iphone
- Eclipse
- ipad
- udp
- MySQL
- HTML
- C#
- Objective C
- 티스토리 초대장
Archives
- Today
- Total
목록byte (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