我编写了一个向节点 js 服务器发送消息的 C++ 程序。
string message;
int iResult = send( socket, message.c_str(), (int)strlen(message.c_str()), 0 );
节点JS代码
net.createServer(function(sock) {
// Add a 'data' event handler to this instance of socket
sock.on('data', function(data) {
console.log(data);
});
// Add a 'close' event handler to this instance of socket
sock.on('close', function(data) {
console.log('CLOSED: ' + sock.remoteAddress +' '+ sock.remotePort);
});
}).listen(PORT, HOST);
节点 JS 服务器收到消息,但是当我 console.log 收到消息时,我得到类似
<Buffer 31 7c 31 34>
可能是什么问题,我该如何解决?