黑马程序员技术交流社区

标题: 怎么计算中英文合并的字符串的长度 [打印本页]

作者: 俞帅明    时间: 2014-2-21 16:49
标题: 怎么计算中英文合并的字符串的长度

import java.io.*;
public class StringTest
{
public static void main(String[] args)
{
String aString = "这是一个测试串,This is a test string.";
String anotherString = null;
try {
anotherString = new String(aString.getBytes("GBK"), "ISO8859_1");
}
catch (UnsupportedEncodingException ex) {
}
System.out.println(aString.length() + "," + anotherString.length());
}
}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2