Notice
Recent Posts
Recent Comments
- Today
- Total
내 머릿속 데이터베이스
[Android] 한글 Byte길이 구하기 본문
text.toString().getBytes().length
위 처럼 하면 한글이 3bytes로 계산된다.
한글을 2byte로 계산하고 싶은경우 아래 처럼 하면된다.
text.toString().getBytes("euc-kr").length
Comments