标题:字符编码
只看楼主
不落夕阳
Rank: 2
等 级:论坛游民
帖 子:64
专家分:30
注 册:2016-10-13
结帖率:69.57%
 问题点数:0 回复次数:1 
字符编码
public static void main(String args[]){
        String a="慕课ABC";
        byte[] bytes =a.getBytes();
        for(byte b:bytes){
            System.out.print(" "+b);        
        }
        System.out.println();
        for(byte b:bytes){
            System.out.print(" "+Integer.toHexString(b & 0xff));  //这段代码什么东西啊能解释一下吗
        }
    }
搜索更多相关主题的帖子: 字符编码 byte System out print 
2017-10-11 22:00
kingpc520
Rank: 3Rank: 3
等 级:论坛游侠
威 望:7
帖 子:43
专家分:178
注 册:2017-9-16
得分:0 
6666666
2017-10-13 14:06



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-481301-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.282563 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved