当前位置: 代码迷 >> J2SE >> 截串,该如何解决
  详细解决方案

截串,该如何解决

热度:83   发布时间:2016-04-24 17:51:19.0
截串
编程:编写一个截取字符串的函数,输入为一个字符串和字节数,输出为按字节截取的字符串。   但是要保证汉字不被截半个,如“我ABC”4,应该截为“我AB”,输入“我ABC汉DEF”,6,应该输出为“我ABC”而不是“我ABC+汉的半个”。


------解决方案--------------------
public static String substr(String str,int byteLen){
int tmp=byteLen;
while(str.substring(0, tmp).getBytes().length> byteLen)
tmp--;

return str.substring(0,tmp);
}
  相关解决方案