免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1830 | 回复: 0
打印 上一主题 下一主题

整型int和字节数组byte相互转换的源程序 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-03-02 09:25 |只看该作者 |倒序浏览
[color="#333333"]来源[color="#333333"]: http://www.javaresearch.org/article/showarticle.js
[color="#333333"]public final class ByteIntSwitch {
    public static void main(String args[] ) {
        int i = 212123;
        byte[] b = toByteArray(i, 4);   //整型到字节,
       System.out.println( "212123 bin: " + Integer.toBinaryString(212123));//212123的二进制表示
       System.out.println( "212123 hex: " + Integer.toHexString(212123));  //212123的十六进制表示   
        for(int j=0;j>8*i & 0xFF );
           
        }
        return bLocalArr;
    }   
     // 将byte数组bRefArr转为一个整数,字节数组的低位是整型的低字节位
    public static int toInt(byte[] bRefArr) {
        int iOutcome = 0;
        byte bLoop;
         
        for ( int i =0; ijava   ByteIntSwitch
212123 bin: 110011110010011011
212123 hex: 33c9b
212123 to byte:
b[0]=-101   b[1]=60   b[2]=3   b[3]=0
byte to int:212123
C:java>
C:java>
   
     
   
[color="#333333"]来源[color="#333333"]: http://www.javaresearch.org/article/showarticle.js


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/3072/showart_13745.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP