Netty:利用ByteBufUtil将ByteBuf数据转换为美化过的十六进制表示

说明

利用io.netty.buffer.ByteBufUtil的appendPrettyHexDump函数,可以将ByteBuf的内容转换为美化过的多行表示的十六进制数据。

  • appendPrettyHexDump(StringBuilder dump, ByteBuf buf):在StringBuilder后面附加ByteBuf内容的多行表示的美化过的十六进制表示。
  • appendPrettyHexDump(StringBuilder dump, ByteBuf buf, int offset, int length):在StringBuilder后面附加ByteBuf部分内容的多行表示的美化过的十六进制表示。其中选取buffer的内容从offset位置处开始,长度为length个字节。
  • prettyHexDump(ByteBuf buffer):将ByteBuf内容转换为多行美化过的十六进制表示的字符串。
  • prettyHexDump(ByteBuf buffer, int offset, int length):将ByteBuf的部分内容转换为多行美化过的十六进制表示的字符串。其中选取buffer的内容从offset位置处开始,长度为length个字节。

代码示例

用appendPrettyHexDump(StringBuilder dump, ByteBuf buf)函数转化

package com.thb;

import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufUtil;
import io.netty.buffer.Unpooled;

public class Demo {

	public static void main(String[] args) {
		// 创建一个ByteBuf
		ByteBuf buf = Unpooled.buffer();		

		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x68);
		}
		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x23);
		}
		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x30);
		}
		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x16);
		}		
		
		StringBuilder dump = new StringBuilder();
		// 在dump后面附加buffer内容的多行美化过的十六进制表示的字符串
		ByteBufUtil.appendPrettyHexDump(dump, buf);
		System.out.println(dump);
	}

}

运行输出:

         +-------------------------------------------------+
         |  0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f |
+--------+-------------------------------------------------+----------------+
|00000000| 68 68 68 68 68 68 68 68 68 68 23 23 23 23 23 23 |hhhhhhhhhh######|
|00000010| 23 23 23 23 30 30 30 30 30 30 30 30 30 30 16 16 |####0000000000..|
|00000020| 16 16 16 16 16 16 16 16                         |........        |
+--------+-------------------------------------------------+----------------+

用appendPrettyHexDump(StringBuilder dump, ByteBuf buf, int offset, int length)函数转化

package com.thb;

import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufUtil;
import io.netty.buffer.Unpooled;

public class Demo {

	public static void main(String[] args) {
		// 创建一个ByteBuf
		ByteBuf buf = Unpooled.buffer();		

		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x68);
		}
		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x23);
		}
		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x30);
		}
		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x16);
		}		
		
		StringBuilder dump = new StringBuilder();
		// 在dump后面附加buffer内容的多行美化过的十六进制表示的字符串,
		// 从位置9处的数据开始,取20个字节的数据
		ByteBufUtil.appendPrettyHexDump(dump, buf, 9, 20);
		System.out.println(dump);
	}

}

运行输出:

         +-------------------------------------------------+
         |  0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f |
+--------+-------------------------------------------------+----------------+
|00000000| 68 23 23 23 23 23 23 23 23 23 23 30 30 30 30 30 |h##########00000|
|00000010| 30 30 30 30                                     |0000            |
+--------+-------------------------------------------------+----------------+

用prettyHexDump(ByteBuf buffer)转化

package com.thb;

import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufUtil;
import io.netty.buffer.Unpooled;

public class Demo {

	public static void main(String[] args) {
		// 创建一个ByteBuf
		ByteBuf buf = Unpooled.buffer();		

		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x68);
		}
		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x23);
		}
		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x30);
		}
		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x16);
		}		

		// 将buffer内容转换为多行美化过的十六进制表示的字符串		
		System.out.println(ByteBufUtil.prettyHexDump(buf));
	}

}

运行输出:

         +-------------------------------------------------+
         |  0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f |
+--------+-------------------------------------------------+----------------+
|00000000| 68 68 68 68 68 68 68 68 68 68 23 23 23 23 23 23 |hhhhhhhhhh######|
|00000010| 23 23 23 23 30 30 30 30 30 30 30 30 30 30 16 16 |####0000000000..|
|00000020| 16 16 16 16 16 16 16 16                         |........        |
+--------+-------------------------------------------------+----------------+

用 prettyHexDump(ByteBuf buffer, int offset, int length)函数转化

package com.thb;

import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufUtil;
import io.netty.buffer.Unpooled;

public class Demo {

	public static void main(String[] args) {
		// 创建一个ByteBuf
		ByteBuf buf = Unpooled.buffer();		

		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x68);
		}
		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x23);
		}
		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x30);
		}
		for (int i = 0; i < 10; i++) {
			buf.writeByte(0x16);
		}			
		
		// 将buffer内容的表示为多行美化过的十六进制表示的字符串,
		// 从位置9处的数据开始,取20个字节的数据			
		System.out.println(ByteBufUtil.prettyHexDump(buf, 9, 20));
	}

}

运行输出:

         +-------------------------------------------------+
         |  0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f |
+--------+-------------------------------------------------+----------------+
|00000000| 68 23 23 23 23 23 23 23 23 23 23 30 30 30 30 30 |h##########00000|
|00000010| 30 30 30 30                                     |0000            |
+--------+-------------------------------------------------+----------------+
使用 Netty 接收和发送十六进制数据需要进行编解码器的配置。 首先,创建一个 `ByteToMessageCodec` 类型的编解码器,这个编解码器可以将字节数据转换成对象,或者将对象转换成字节数据。下面是一个将字节数据解码成十六进制字符串的示例代码: ```java public class HexDecoder extends ByteToMessageCodec<String> { @Override protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception { if (in.readableBytes() < 2) { return; } // 读取字节数据转换十六进制字符串 byte[] bytes = new byte[in.readableBytes()]; in.readBytes(bytes); String hex = Hex.encodeHexString(bytes); out.add(hex); } } ``` 接下来,创建一个 `MessageToByteEncoder` 类型的编码器,这个编码器可以将对象转换成字节数据。下面是一个将十六进制字符串编码成字节数据的示例代码: ```java public class HexEncoder extends MessageToByteEncoder<String> { @Override protected void encode(ChannelHandlerContext ctx, String msg, ByteBuf out) throws Exception { // 将十六进制字符串转换成字节数据 byte[] bytes = Hex.decodeHex(msg.toCharArray()); out.writeBytes(bytes); } } ``` 最后,在 Netty 的管道中添加编解码器即可: ```java ChannelPipeline pipeline = ch.pipeline(); pipeline.addLast(new HexDecoder()); pipeline.addLast(new HexEncoder()); ``` 这样就完成了对十六进制数据的接收和发送。在使用时,只需要将十六进制字符串作为消息对象传递给 Netty 的 `Channel` 即可。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值