티스토리 뷰
쓸때마다 새로만드는 것 같아서 저장용
UTF-8일 경우
subStringBytes("블라블라블라라", 10, 3);
EUC-KR일 경우
subStringBytes("블라블라블라라", 10, 2);
public String subStringBytes(String str, int byteLength, int sizePerLetter) { 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 <= length; i++) { asc = (int) str.charAt(i - 1); if (asc > 127) { if (byteLength >= tempSize + sizePerLetter) { tempSize += sizePerLetter; retLength++; } } else { if (byteLength > tempSize) { tempSize++; retLength++; } } } return str.substring(0, retLength); }
'개발 > Java, Kotlin' 카테고리의 다른 글
@Scope 어노테이션 사용하기(request+ProxyMode) (0) | 2018.02.06 |
---|---|
Threadlocal을 이용하여 사용자별 요청 처리하기 (0) | 2017.07.14 |
이클립스 플러그인(vrapper) 설정파일(vrapperrc) (0) | 2017.01.26 |
스프링 부트(spring boot)로 톰캣에서 실행하기(이클립스) (0) | 2016.11.03 |
스프링 부트(Spring boot)로 restful API 서버 개발하기 (0) | 2016.10.12 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 합정
- java
- 코틀린
- 톰캣
- Eclipse
- boot
- docker
- vi
- Kotlin
- resttemplate
- Database
- vim
- IntelliJ
- 도커
- Spring
- 맛집
- vrapper
- jQuery
- Shell
- grant
- Linux
- Tomcat
- Access
- oracle
- mybatis
- ls
- properties
- maven
- Profile
- Build
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함