`
snoopy7713
  • 浏览: 1148895 次
  • 性别: Icon_minigender_2
  • 来自: 火星郊区
博客专栏
Group-logo
OSGi
浏览量:0
社区版块
存档分类
最新评论

java整型数与网络字节序的 byte[] 数组转换关系

    博客分类:
  • java
阅读更多

工作项目需要在 java c/c++ 之间进行 socket 通信, socket 通信是以字节流或者字节包进行的, socket 发送方须将数据转换为字节流或者字节包,而接收方则将字节流和字节包再转换回相应的数据类型。如果发送方和接收方都是同种语言,则一般只涉及到字节序的调整。而对于 java c/c++ 的通信,则情况就要复杂一些,主要是因为 java 中没有 unsigned 类型,并且 java c 在某些数据类型上的长度不一致。
   
本文就是针对这种情况,整理了 java 数据类型和网络字节流或字节包 ( 相当于 java byte 数组 ) 之间转换方法。实际上网上这方面的资料不少,但往往不全,甚至有些有错误,于是就花了点时间对 java 整型数和网络字节序的 byte[] 之间转换的各种情况做了一些验证和整理。整理出来的函数如下:

public class ByteConvert {

	/**
	 * 长整形转byte数组
	 * 
	 * @param n
	 *            长整形数字
	 * @return 转换后的数组
	 */
	public static byte[] longToBytes(long n) {
		byte[] b = new byte[8];
		b[7] = (byte) (n & 0xff);
		b[6] = (byte) (n >> 8 & 0xff);
		b[5] = (byte) (n >> 16 & 0xff);
		b[4] = (byte) (n >> 24 & 0xff);
		b[3] = (byte) (n >> 32 & 0xff);
		b[2] = (byte) (n >> 40 & 0xff);
		b[1] = (byte) (n >> 48 & 0xff);
		b[0] = (byte) (n >> 56 & 0xff);
		return b;
	}

	/**
	 * 长整形转byte数组
	 * 
	 * @param n
	 *            长整形数字
	 * @param array
	 *            转换后的结果
	 * @param offset
	 *            从第offset位开始转换
	 */
	public static void longToBytes(long n, byte[] array, int offset) {
		array[7 + offset] = (byte) (n & 0xff);
		array[6 + offset] = (byte) (n >> 8 & 0xff);
		array[5 + offset] = (byte) (n >> 16 & 0xff);
		array[4 + offset] = (byte) (n >> 24 & 0xff);
		array[3 + offset] = (byte) (n >> 32 & 0xff);
		array[2 + offset] = (byte) (n >> 40 & 0xff);
		array[1 + offset] = (byte) (n >> 48 & 0xff);
		array[0 + offset] = (byte) (n >> 56 & 0xff);
	}

	/**
	 * bytes 转 Long
	 * 
	 * @param array
	 *            要转换的byte
	 * @return long长整形数字
	 */
	public static long bytesToLong(byte[] array) {
		return ((((long) array[0] & 0xff) << 56) | (((long) array[1] & 0xff) << 48) | (((long) array[2] & 0xff) << 40)
		        | (((long) array[3] & 0xff) << 32) | (((long) array[4] & 0xff) << 24)
		        | (((long) array[5] & 0xff) << 16) | (((long) array[6] & 0xff) << 8) | (((long) array[7] & 0xff) << 0));
	}

	/**
	 * byte数组转长整形数字
	 * 
	 * @param array
	 *            要转换的byte数组
	 * @param offset
	 *            从第offset开始转换
	 * @return 转换后的长整形数字
	 */
	public static long bytesToLong(byte[] array, int offset) {
		return ((((long) array[offset + 0] & 0xff) << 56) | (((long) array[offset + 1] & 0xff) << 48)
		        | (((long) array[offset + 2] & 0xff) << 40) | (((long) array[offset + 3] & 0xff) << 32)
		        | (((long) array[offset + 4] & 0xff) << 24) | (((long) array[offset + 5] & 0xff) << 16)
		        | (((long) array[offset + 6] & 0xff) << 8) | (((long) array[offset + 7] & 0xff) << 0));
	}

	public static byte[] intToBytes(int n) {
		byte[] b = new byte[4];
		b[3] = (byte) (n & 0xff);
		b[2] = (byte) (n >> 8 & 0xff);
		b[1] = (byte) (n >> 16 & 0xff);
		b[0] = (byte) (n >> 24 & 0xff);
		return b;
	}

	public static void intToBytes(int n, byte[] array, int offset) {
		array[3 + offset] = (byte) (n & 0xff);
		array[2 + offset] = (byte) (n >> 8 & 0xff);
		array[1 + offset] = (byte) (n >> 16 & 0xff);
		array[offset] = (byte) (n >> 24 & 0xff);
	}

	/**
	 * @param b
	 * @return
	 */
	public static int bytesToInt(byte b[]) {
		return b[3] & 0xff | (b[2] & 0xff) << 8 | (b[1] & 0xff) << 16 | (b[0] & 0xff) << 24;
	}

	/**
	 * byte 数组转 int
	 * 
	 * @param b
	 *            byte数组
	 * @param offset
	 *            从数组的第几位开始转
	 * @return 整形
	 */
	public static int bytesToInt(byte b[], int offset) {
		return b[offset + 3] & 0xff | (b[offset + 2] & 0xff) << 8 | (b[offset + 1] & 0xff) << 16
		        | (b[offset] & 0xff) << 24;
	}

	/**
	 * 无符号整形转数组
	 * 
	 * @param n
	 *            要转换的整形
	 * @return byte数组
	 */
	public static byte[] uintToBytes(long n) {
		byte[] b = new byte[4];
		b[3] = (byte) (n & 0xff);
		b[2] = (byte) (n >> 8 & 0xff);
		b[1] = (byte) (n >> 16 & 0xff);
		b[0] = (byte) (n >> 24 & 0xff);

		return b;
	}

	public static void uintToBytes(long n, byte[] array, int offset) {
		array[3 + offset] = (byte) (n);
		array[2 + offset] = (byte) (n >> 8 & 0xff);
		array[1 + offset] = (byte) (n >> 16 & 0xff);
		array[offset] = (byte) (n >> 24 & 0xff);
	}

	public static long bytesToUint(byte[] array) {
		return ((long) (array[3] & 0xff)) | ((long) (array[2] & 0xff)) << 8 | ((long) (array[1] & 0xff)) << 16
		        | ((long) (array[0] & 0xff)) << 24;
	}

	public static long bytesToUint(byte[] array, int offset) {
		return ((long) (array[offset + 3] & 0xff)) | ((long) (array[offset + 2] & 0xff)) << 8
		        | ((long) (array[offset + 1] & 0xff)) << 16 | ((long) (array[offset] & 0xff)) << 24;
	}

	public static byte[] shortToBytes(short n) {
		byte[] b = new byte[2];
		b[1] = (byte) (n & 0xff);
		b[0] = (byte) ((n >> 8) & 0xff);
		return b;
	}

	public static void shortToBytes(short n, byte[] array, int offset) {
		array[offset + 1] = (byte) (n & 0xff);
		array[offset] = (byte) ((n >> 8) & 0xff);
	}

	public static short bytesToShort(byte[] b) {
		return (short) (b[1] & 0xff | (b[0] & 0xff) << 8);
	}

	public static short bytesToShort(byte[] b, int offset) {
		return (short) (b[offset + 1] & 0xff | (b[offset] & 0xff) << 8);
	}

	public static byte[] ushortToBytes(int n) {
		byte[] b = new byte[2];
		b[1] = (byte) (n & 0xff);
		b[0] = (byte) ((n >> 8) & 0xff);
		return b;
	}

	public static void ushortToBytes(int n, byte[] array, int offset) {
		array[offset + 1] = (byte) (n & 0xff);
		array[offset] = (byte) ((n >> 8) & 0xff);
	}

	public static int bytesToUshort(byte b[]) {
		return b[1] & 0xff | (b[0] & 0xff) << 8;
	}

	public static int bytesToUshort(byte b[], int offset) {
		return b[offset + 1] & 0xff | (b[offset] & 0xff) << 8;
	}

	public static byte[] ubyteToBytes(int n) {
		byte[] b = new byte[1];
		b[0] = (byte) (n & 0xff);
		return b;
	}

	public static void ubyteToBytes(int n, byte[] array, int offset) {
		array[0] = (byte) (n & 0xff);
	}

	public static int bytesToUbyte(byte[] array) {
		return array[0] & 0xff;
	}

	public static int bytesToUbyte(byte[] array, int offset) {
		return array[offset] & 0xff;
	}
	// char 类型、 float、double 类型和 byte[] 数组之间的转换关系还需继续研究实现。
}
分享到:
评论

相关推荐

    Java整型数与网络字节序byte[]数组转换关系详解

    "Java整型数与网络字节序byte[]数组转换关系详解" 本文主要介绍了Java整型数与网络字节序byte[]数组之间的转换关系,包括整型数到byte[]数组的转换和byte[]数组到整型数的转换。这些转换关系在Java和C/C++之间的...

    java数据类型转byte数组

    ip地址转4字节byte,char转2字节byte,byte数组转char,int整数转换为4字节的byte数组,byte数组转换为int整数,double类型转8字节数组,8位数组转double,long整数转换为8字节的byte数组,short整数转换为2字节的...

    java基本类型与byte数组互相转换

    Byte数组转换为Short值 最后,`byte`数组也可以转换回相应的基本类型。例如,将2字节的`byte`数组转换为`short`值: ```java public static short byteArrToShort(byte[] b) { byte[] a = new byte[2]; int i =...

    java byte相互转换详解左右位移

    相反,从byte数组转换回int类型则需要将这些字节合并起来。 **转换方法:** 1. **byte转int**:将一个byte转换为int,可以通过与0xFF进行按位与操作(AND),然后根据位移规则进行左移或右移操作。例如,`byte b =...

    int类型和byte数组之间的转换

    写一个方法,将int类型转换为字节数组,输入任意int类型整型,输出字节数组;写第二个方法,输入字节数组,输出对应int类型数据。

    java基本类型与byte数组互相转换.rar

    总结一下,Java中的基本类型与字节数组的转换涉及到一系列的方法和类,包括`ByteBuffer`, `CharsetEncoder`, `DataInputStream`, 和 `DataOutputStream`。理解这些工具的使用方式和注意事项对于处理二进制数据至关...

    Java基本类型与byte数组之间相互转换方法

    上述代码提供了一些静态方法,用于在基本类型与byte数组之间进行转换。我们逐一分析这些方法: 1. `getBytes(short data)` 和 `getShort(byte[] bytes)` - 这两个方法处理short类型。`getBytes(short data)` 将...

    数组的转换函数

    上述代码片段提供了一些在Java中实现整型数(long类型)与网络字节序的字节数组之间转换的方法。以下是这些方法的详细说明: 1. `longToBytes(long n)`:这个静态方法将一个长整型(long)数值`n`转换为一个8字节的...

    Java 字节数组类型(byte[])与int类型互转方法

    在处理二进制数据时,特别是网络通信或序列化过程中,我们经常需要将整型(int)数据转换为字节数组(byte[]),反之亦然。本文将详细讲解如何在Java中进行这两种类型的转换,并解释相关原理。 1. **int类型转byte[]** ...

    Java byte数组操纵方式代码实例解析

    - 图片与byte数组的互相转换,通常涉及图像编码和解码过程。 - 字节数组与整型(int)、长整型(long)、短整型(short)和字节类型(byte)之间的转换,需要根据字节顺序和位运算进行操作。 - 字符串与字节数组的...

    java int转byte和long转byte的方法

    在Java编程中,有时我们需要将整型(int)和长整型(long)的数据转换为字节(byte),这在处理网络传输、二进制序列化或内存优化等场景中尤其常见。以下是一些关于如何在Java中进行这些转换的方法。 首先,让我们看下...

    java String 与各种进制字符之间的转换

    在Java编程语言中,String类是处理文本字符串的核心类,而与各种进制字符之间的转换是常见的编程需求。本文将详细探讨Java中如何进行String与二进制、八进制、十进制以及十六进制之间的转换。 首先,我们要了解进制...

    学习文档_JAVA中Integer和Byte转换.doc

    这个方法首先将字节数组转换为16进制字符串,然后解析为长整型,以得到无符号的4字节整数值。 需要注意的是,这里的无符号整数转换是基于Long类型进行的,因为无符号的32位整数超过了Integer的范围(-2^31到2^31-1...

    C# byte转为有符号整数实例

    例如,以下是如何将一个`byte`数组转换为8位、16位和32位有符号整数: ```csharp byte[] data = new byte[] { 0xF8, 0x66, 0x55, 0x44 }; // 假设这是一个4字节的数据 // 转换为8位有符号整数(sbyte) sbyte sb =...

    在Java中int和byte[]的相互转换

    相反,从byte数组转换回int,我们需要组合这些字节,将它们按正确的顺序放置,然后将结果解释为int。以下是一个实现此功能的函数: ```java public static int bytesToInt(byte[] bytes) { int i; i = (int) (...

    java基础之数组

    - 字节类型(byte)与 Byte 类 - 短整型(short)与 Short 类 - 整型(int)与 Integer 类 - 长整型(long)与 Long 类 - 单精度浮点型(float)与 Float 类 - 双精度浮点型(double)与 Double 类 - 布尔型...

    java处理字节的常用工具类

    字节数组到整型转换是将字节数组转换为整形数据的过程。这个过程可以通过位运算符来实现,例如: `public static int byteToInt(byte[] b) { return ((((b[0] & 0xff) ) | ((b[1] & 0xff) ) | ((b[2] & 0xff) ) | ...

    字节类型转换及CRC32校验

    3. **字节到字符串**: 使用`new String(byte[], charset)`构造函数,指定字符编码(如UTF-8)将字节数组转换为字符串。 4. **字符串到字节**: `getBytes(charset)`方法将字符串转换为其字节表示。 接下来,CRC32...

    J2ME 浮点型与字节型之间的底层转换

    此方法则是将一个由8个`byte`组成的数组转换回`double`类型的浮点数。这里使用了与`doubleToByte`相反的过程,即通过组合这8个字节形成一个`long`值,并利用`Double.longBitsToDouble`方法将其转换回`double`值。 `...

    Java输出通过InetAddress获得的IP地址数组详细解析

    一种常见的做法是在将`byte`转换为整型(如`int`)时,进行按位与操作,使用常量0xFF。例如,`byte b = 0b1000_0111; int ipSegment = b & 0xFF;`这里的`0xFF`是一个无符号的8位二进制数,与`byte`进行按位与操作后...

Global site tag (gtag.js) - Google Analytics