黑马程序员技术交流社区
标题:
汉字 "我爱你" 对应的Utf-8码是多少呢??
[打印本页]
作者:
small_horse
时间:
2015-8-24 23:27
标题:
汉字 "我爱你" 对应的Utf-8码是多少呢??
package cn.itcast1;
import java.io.UnsupportedEncodingException;
import java.util.Arrays;
public class Utf_8 {
public static void main(String[] args) throws UnsupportedEncodingException {
String s = "我爱你";
byte[] bytes = s.getBytes("UTF-8");
System.out.println(Arrays.toString(bytes));
String result = new String(bytes, "UTF-8");
System.out.println(result);
}
}
//[-26, -120, -111, -25, -120, -79, -28, -67, -96]
作者:
xingui66
时间:
2015-8-25 15:23
题目晃人,这样出题真的好吗?
作者:
liuch111
时间:
2015-8-26 09:56
恩恩 不错...
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2