码迷,mamicode.com
首页 > 编程语言 > 详细

java int to byte array

时间:2015-07-19 17:50:09      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

引用 http://anjun.cc/post/651.html  

private byte[] intToByteArray(final int integer) throws IOException {
//        ByteArrayOutputStream bos = new ByteArrayOutputStream();
//        DataOutputStream dos = new DataOutputStream(bos);
//        dos.writeInt(integer);
//        dos.flush();
//        return bos.toByteArray();
        byte[] result = new byte[4];
      
        result[0] = (byte) (integer >> 24 & 0xff);
        result[1] = (byte) (integer >> 16 & 0xff);
        result[2] = (byte) (integer >> 8 & 0xff);
        result[3] = (byte) (integer & 0xff);
        
        return result;
    }

 

java int to byte array

标签:

原文地址:http://www.cnblogs.com/anjuncc/p/4658873.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!