码迷,mamicode.com
首页 > Web开发 > 详细

netty(9)ByteBuf的操作

时间:2018-04-04 16:17:05      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:set   read   byte   ann   class   his   tostring   post   AC   

1.读取ByteBuf之后的转换

在channelRead(ChannelHandlerContext ctx,Object msg)函数中,

a.转换成String

ByteBuf in=(ByteBuf)msg;

String conv=in.toString(CharsetUtil.US_ASCII);

说明:ByteBuf 中toString的作用:

Decodes this buffer‘s readable bytes into a string with the specified
* character set name. US_ASCII,UTF_8等值

 

netty(9)ByteBuf的操作

标签:set   read   byte   ann   class   his   tostring   post   AC   

原文地址:https://www.cnblogs.com/legion/p/8717466.html

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