爱心技术专栏专题

按字节截取String字符串.

摘录:java 来源:java 加入时间:2006年08月19日
摘要:
按字节截取String字符串.

/**
* 取字符串的前toCount个字符
*
* @param str 被处理字符串
* @param toCount 截取长度
* @param more 后缀字符串
* @version 2004.11.24
* @author zhulx
* @…

转载:转载请保留本信息,本文来自
http://www.51dibs.com
/html/2006/article/info16/a_59d6136551341dc9.htm

按字节截取String字符串.

站点:爱心种子小博士 关键字:按字节截取String字符串.

   
按字节截取String字符串.
/**
* 取字符串的前toCount个字符
*
* @param str 被处理字符串
* @param toCount 截取长度
* @param more 后缀字符串
* @version 2004.11.24
* @author zhulx
* @return String
*/
public static String substring(String str, int toCount,String more)
{
int reInt = 0;
String reStr = "";
if (str == null)
return "";
char[] tempChar = str.toCharArray();
for (int kk = 0; (kk < tempChar.length && toCount > reInt); kk++) {
String s1 = str.valueOf(tempChar[kk]);
byte[] b = s1.getBytes();
reInt += b.length;
reStr += tempChar[kk];
}
if (toCount == reInt || (toCount == reInt - 1))
reStr += more;
return reStr;
}

客户服务中心信箱:[email protected] [email protected] 网站地图

声明

合作伙伴: