码迷,mamicode.com
首页 > 其他好文 > 详细

String 字符串递归截取字节字符串

时间:2016-12-19 14:06:37      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:sub   utf-8   截取   static   cep   substring   length   ring   exce   

 

public static String idgui(String s,int num)throws Exception{
int changdu = s.getBytes("UTF-8").length;
if(changdu > num){
s = s.substring(0, s.length() - 1);
s = idgui(s,num);
}
return s;
}

String 字符串递归截取字节字符串

标签:sub   utf-8   截取   static   cep   substring   length   ring   exce   

原文地址:http://www.cnblogs.com/myjoan/p/6196938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!