通过重写channelRead(ChannelHandler ctx, Object msg) 方法读取c++发过来的字节数据。

public class ServerHandler extends ChannelHandlerAdapter{

public void channelRead(ChannelHandlerContext channel, Object msg) throws Exception {

try {

ByteBuf buf = (ByteBuf)msg;

byte [] bytes = new byte[buf.readableBytes()];

buf.readBytes(bytes);//复制内容到字节数组bytes

String hex = bytes2HexString(bs); //将byte数组转为16进制字符串

String str = hexString2String(hex,”GBK”); //将16进制字符串转换为普通字符串

System.out.println(str); //这里打印全是乱码

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

log.error(“异常:”,e);

}

}

private String bytes2HexString(byte[] b) {

StringBuffer result = new StringBuffer();

String hex;

for (int i = 0; i < b.length; i++) {

hex = Integer.toHexString(b[i] & 0xFF);

if (hex.length() == 1) {

hex = '0' + hex;

}

result.append(hex.toUpperCase());

}

return result.toString();

}

private String hexString2String(Stirng hex, String charset) {

byte[] bs = new byte[hex.length()/2];

for(int i=0; i

bs[i] = (byte)(0xff&Integer.parseInt(hex.substring(i*2,i*2+2),16));

}

try{

hex = new String(bs, charset);

}catch(Exception e) {

e.printStackTrace();

}

return hex;

}

}

回答

要判定问题出在哪里。 你可以先测试两端传送是否正常,用base64 encode/decode 来代替hexString2String功能函数,看看是否网络数据传送代码有问题。如果没有问题,那就是编码解码问题,需要检查hexString2String 是否有问题。

也可以先测试hexString2String,选一些实验数据,分别用Java、C把这些函数产生输出输入,看看结果是否正常。

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐