首页 > Java

Java将int转为低字节在前高字节在后的byte数组

发表于2014-09-05 11:55:17| --次阅读| 来源webkfa| 作者小豆豆

摘要:Java将int转为低字节在前高字节在后的byte数组
java代码
/**
	 * 将int转为低字节在前,高字节在后的byte数组
	 */
	public static byte[] toLH(int n) {
		byte[] b = new byte[4];
		b[0] = (byte) (n & 0xff);
		b[1] = (byte) (n >> 8 & 0xff);
		b[2] = (byte) (n >> 16 & 0xff);
		b[3] = (byte) (n >> 24 & 0xff);
		return b;
	}

相关文章

猜你喜欢

学到老在线代码浏览器 关闭浏览
友情链接: hao123 360导航 搜狗网址导航 114啦网址导航 博客大全
Copyright © 1999-2014, WEBKFA.COM, All Rights Reserved  京ICP备14034497号-1