如何将Netty ByteBuf转换为字符串,反之亦然

有没有办法将netty ByteBuf转换为String,反之亦然?

public String toString(ByteBuf b){

//return b enconded to a String

}

public Bytebuf ToByteBuff(String s){

//return s decoded to Bytebuf

}

回答:

您可以使用ByteBuf.toString(Charset)转换为字符串。

您可以使用String.getBytes(Charset)Unpooled.wrappedBuffer(byte[])转换为ByteBuf。

以上是 如何将Netty ByteBuf转换为字符串,反之亦然 的全部内容, 来源链接: utcz.com/qa/429560.html

回到顶部