当前位置: 技术问答>java相关
对于一个可能为全角或半角的字符串,如何得到它的字节数?
来源: 互联网 发布时间:2017-04-30
本文导语: 对于一个可能为全角或半角的字符串,如何得到它的字节数? | 是要这个吗? byte[] b=str.getBytes(); int num=b.length; | String s="中文English"; String s1=new String(s); System.out.println(s1.g...
对于一个可能为全角或半角的字符串,如何得到它的字节数?
|
是要这个吗?
byte[] b=str.getBytes();
int num=b.length;
byte[] b=str.getBytes();
int num=b.length;
|
String s="中文English";
String s1=new String(s);
System.out.println(s1.getBytes().length);
String s1=new String(s);
System.out.println(s1.getBytes().length);
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。