從字符串中截取等長字節的Java代碼。本站提示廣大學習愛好者:(從字符串中截取等長字節的Java代碼)文章只能為提供參考,不一定能成為您想要的結果。以下是從字符串中截取等長字節的Java代碼正文
在頁面顯示的時刻,有時刻文字沒法顯示完整,就只能顯示部門文字,然則直接截取就只能截取等長字符串,英文和中文很難處置
所以就寫了上面辦法,截取等長字符
public static void main(String[] args) {
String str = "20120131:《回家》1你好麼" ;
System.out.println( subString(str , 10 ) ) ;
}
public static String subString(String str , int len){
len *= 2 ;
byte[]bytes = str.getBytes() ;
if(bytes.length <= len){
return str ;
}
byte[]newBytes = Arrays.copyOf( bytes, len ) ;
int count = 0 ;
for(byte b : newBytes){
if(b < 0){
count++;
}
}
if(count % 2 != 0){
len ++;
newBytes = Arrays.copyOf( bytes, len ) ;
}
return new String( newBytes ) + ".." ;
}