Java开发网 Java开发网
注册 | 登录 | 帮助 | 搜索 | 排行榜 | 发帖统计  

您没有登录

» Java开发网 » Java SE 综合讨论区  

按打印兼容模式打印这个话题 打印话题    把这个话题寄给朋友 寄给朋友    该主题的所有更新都将Email到你的邮箱 订阅主题
flat modethreaded modego to previous topicgo to next topicgo to back
作者 中英文混合字符串的问题
orangeyxj





发贴: 45
积分: 0
于 2005-04-04 16:59 user profilesend a private message to usersearch all posts byselect and copy to clipboard. 
ie only, sorry for netscape users:-)add this post to my favorite list
我想在一个中英文混合的字符串中截取部分字符,如 “java是我现在学的东西”。有这么一个方法:
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;
}
虽然可以保证截取的不会是乱码,但是在这里汉字是占两个字节,例如我想取6个字符,取出的是 “java是”,如果取5个字符,就仅仅是“java”,
能不能做到这样:取六个字符,取出的就是 “java是我”,就是把汉字当作一个字符来处理。说得有点乱,请见谅。
先谢谢了




话题树型展开
人气 标题 作者 字数 发贴时间
5201 中英文混合字符串的问题 orangeyxj 731 2005-04-04 16:59
3840 Re:中英文混合字符串的问题 orangeyxj 41 2005-04-04 17:05
4556 Re:中英文混合字符串的问题 undefined 89 2005-04-14 10:47

flat modethreaded modego to previous topicgo to next topicgo to back
  已读帖子
  新的帖子
  被删除的帖子
Jump to the top of page

   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923