- 浏览: 56631 次
- 性别:
- 来自: 广州
文章列表
ava字符串长度截取 考虑汉字
- 博客分类:
- java
public static String getLimitLengthString( String str,int len){
try{
int counterOfDoubleByte = 0;
byte[] b = str.getBytes("gb2312");
if(b.length <= len)
return str;
for(int i = 0; i < len; i++){
if(b[i] < 0)
counterOfDouble ...