我不了解node.js
。
在我的previous question关于如何使用UDP
发送C++
字符串文字并从Node.js
收到该文字后,我正在考虑接收号码(更一般地说,收到对象)。
我得到的结果是二进制格式的丑陋字符。我应该如何修理它们?
结果:
127.0.0.1:1414 - (�@
127.0.0.1:1414 - ףp=
(�@
127.0.0.1:1414 - �G�z(�@
127.0.0.1:1414 - ��Q�(�@
127.0.0.1:1414 - \���((�@
127.0.0.1:1414 - 33333(�@
127.0.0.1:1414 -
ףp=(�@
127.0.0.1:1414 - �z�G(�@
127.0.0.1:1414 - ���Q(�@
127.0.0.1:1414 - ���(\(�@
127.0.0.1:1414 - gffff(�@
127.0.0.1:1414 - >
ףp(�@
127.0.0.1:1414 - �G�z(�@
127.0.0.1:1414 - �Q��(�@
127.0.0.1:1414 - ��(\�(�@
127.0.0.1:1414 - �����(�@
127.0.0.1:1414 - q=
ף(�@
127.0.0.1:1414 - H�z�(�@
127.0.0.1:1414 - ��Q�(�@
127.0.0.1:1414 - �(\��(�@
127.0.0.1:1414 - �����(�@
127.0.0.1:1414 - �p=
�(�@
127.0.0.1:1414 - {�G�(�@
127.0.0.1:1414 - R���(�@
127.0.0.1:1414 - )\���(�@
127.0.0.1:1414 - )�@
127.0.0.1:1414 - ףp=
)�@
127.0.0.1:1414 - �G�z)�@
127.0.0.1:1414 - ��Q�)�@
127.0.0.1:1414 - \���()�@
127.0.0.1:1414 - 33333)�@
127.0.0.1:1414 -
app.js
var PORT = 1414;
var HOST = '127.0.0.1';
var dgram = require('dgram');
var server = dgram.createSocket({ type: 'udp4', reuseAddr: true });
server.on('listening', function () {
var address = server.address();
console.log('UDP Server listening on ' + address.address + ":" + address.port);
});
server.on('message', function (message, remote) {
console.log(remote.address + ':' + remote.port +' - ' + message);
});
server.bind(PORT, HOST);
的main.cpp
// g++ main.cpp -o main -std=c++11 -lboost_system -pthread
#include <iostream>
#include <stdio.h>
#include <string>
#include <boost/asio.hpp>
using boost::asio::ip::udp;
int main(int argc, char* argv[])
{
const int port=1414;
const std::string ip="127.0.0.1";
boost::asio::io_service io_service;
udp::resolver resolver(io_service);
udp::endpoint client_endpoint = *resolver.resolve({udp::v4(), ip, std::to_string(port)});
udp::socket socket(io_service, udp::v4());
socket.set_option(boost::asio::socket_base::reuse_address(true));
socket.bind(udp::endpoint(udp::v4(), port));
double data;
for(long i=0;true;i++)
{
data=i*0.01;
socket.send_to(boost::asio::buffer((char *)&data, sizeof(data)), client_endpoint);
usleep(10);
}
return 0;
}
答案 0 :(得分:2)
您收到的是Buffer
,其中包含二进制数据。通过将message
与字符串连接,您隐式调用message.toString()
,默认情况下会将二进制数据转换为UTF8,这就是您所看到的。
相反,您需要做的是直接从message
阅读。您可以使用Buffer
方法从message.read*()
读取数字。
然而,您仍会遇到当前代码的问题:发送data
个字节的顺序取决于主机的CPU(类型)。最好通过网络以网络字节顺序(大端)发送数据,以确保兼容性和一致性。
假设您正在使用典型的Intel或AMD CPU,应该能够在node.js端使用message.readDoubleLE()
来读取值。