A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

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]

2 个回复

正序浏览
恩恩   不错...
回复 使用道具 举报
题目晃人,这样出题真的好吗?
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马