我尝试使用zeromq通过c ++客户端和python服务器交换Json对象。
server.py
import zmq
import json
context = zmq.Context()
socket = context.socket(zmq.REP)
socket.bind("tcp://*:5555")
while True:
json_str = socket.recv_json()
data_print = json.loads(json_str)
Type = data_print['Type']
Parameter = data_print['Parameter']
Value = data_print['Value']
print(Type,Parameter,Value)
client.cpp
#include <zmq.hpp>
#include <string>
#include <iostream>
#include <sstream>
#include <json/json.h>
#include <typeinfo>
class multi_usrp_emulation{
public:
void client1(){
std::string strJson="{\"Type\":\"TX\", \
\"Parameter\" : \"Frequency\" ,\
\"Value\" : \"5.17e9\" \
}";
Json::Value root;
Json::Reader reader;
reader.parse(strJson.c_str(),root);
Json::FastWriter fastwriter;
std::string message = fastwriter.write(root);
zmq::context_t context (1);
zmq::socket_t socket (context, ZMQ_REQ);
socket.connect ("tcp://localhost:5555");
zmq::message_t request (message.size());
memcpy (request.data (), (message.c_str()), (message.size()));
socket.send(request);
}
};
int main (void)
{
multi_usrp_emulation caller;
caller.client1();
}
执行这些程序,在server.py中出现此错误:
data_print = json.loads(json_str)
File "/usr/lib/python3.4/json/__init__.py", line 312, in loads
s.__class__.__name__))
TypeError: the JSON object must be str, not 'dict'
我在c ++中使用jsoncpp for Json。
如何在C ++和Python之间交换Json消息?
答案 0 :(得分:0)
您正尝试将json字符串转换为python对象两次。以下两行都返回对象,而不是字符串。
json_str = socket.recv_json()
data_print = json.loads(json_str)
使用socket.recv_json()
接收数据并删除后面的行,或者使用socket.recv()
接收数据,然后将json_str
中的字符串加载到json.loads(json_str)
的python对象中}。