龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 软件开发 > JAVA开发 >

从字符串中截取等长字节的Java代码

时间:2014-06-05 15:13来源:网络整理 作者:网络 点击:
分享到:
这篇文章主要介绍了从字符串中截取等长字节的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 ) + ".." ; 
 }
精彩图集

赞助商链接