这是json形式:
{"simpleChannels":{"item":[{"channelID":4248,"majorChannelNumber":22,"minorChannelNumber":0,"channelType":"SLL","simpleSchedules":[],"channelKey":"4248_1343210400000","shortName":"KWHY","longName":"A3 Los Angeles 22 KWHY IND","networkAffiliation":["Independent"],"logoID":0,"authCode":"FS","engChlFlag":false,"hasMirror":true,"pgSource":"ACTIVE","hdChlFlag":true,"adultChlFlag":false,"vodProviderId":0,"blackOut":false,"liveStreaming":"N"}]}}
这是尝试解析和提取值的代码:
json 是包含上述内容的 std::string :
m_guideSlice.Parse<0>(json.c_str());
rapidjson::Value& simpleChannels = m_guideSlice["simpleChannels"];
if (simpleChannels.IsObject()) {
SYSLOG_CRITICAL("simpleChannels.IsObject() == true\n");
rapidjson::Value& channelArray= simpleChannels["item"];
if (channelArray.IsArray()) {
SYSLOG_CRITICAL("channelArray.IsArray() == true\n");
rapidjson::Value& channel = channelArray[0u];
if (channel.IsObject()) {
SYSLOG_CRITICAL("channel.isObject() == true\n");
rapidjson::Value& channelID = channel["channelID"];
if (channelID.IsInt()) {
SYSLOG_CRITICAL("channelID.IsInt() == true, channelID= %d\n", channelID.GetInt());
}
else {
SYSLOG_CRITICAL("channelID.IsInt() == false, type= %X\n", channelID.GetType());
}
rapidjson::Value& majorChannelNumber = channel["majorChannelNumber"];
if (majorChannelNumber.IsInt()) {
SYSLOG_CRITICAL("majorChannelNumber.IsInt() == true, majorChannelNumber= %d\n", majorChannelNumber.GetInt());
}
else {
SYSLOG_CRITICAL("majorChannelNumber.IsInt() == false, type= %X\n", majorChannelNumber.GetType());
}
rapidjson::Value& channelType = channel["channelType"];
if (channelType.IsString()) {
SYSLOG_CRITICAL("channelType.IsString() == true\n")
SYSLOG_CRITICAL("channelType = %s\n", channelType.GetString());
}
else {
SYSLOG_CRITICAL("channelType.IsString() == false, type= %X\n", channelType.GetType());
}
rapidjson::Value& shortName = channel["shortName"];
if (channelType.IsString()) {
SYSLOG_CRITICAL("shortName.IsString() == true\n")
SYSLOG_CRITICAL("shortName = %s\n", shortName.GetString());
}
else {
SYSLOG_CRITICAL("shortName.IsString() == false, type= %X\n", shortName.GetType());
}
}
else {
SYSLOG_CRITICAL("channel.IsObject() == false, type= %X\n", channel.GetType());
}
}
else {
SYSLOG_CRITICAL("channelArray.IsArray() == false, type= %X\n", channelArray.GetType());
}
}
else {
SYSLOG_CRITICAL("simpleChannels.IsObject() == false, type= %X\n", simpleChannels.GetType());
}
这是从 syslog 中提取的输出:
May 19 01:25:38 [BSP] [30578]: [PGWS-GEN LOG_CRIT tid:30744 pthr:0x7033e4f0]: (PgwsIngest.cpp:78) getGuide(): simpleChannels.IsObject() == true
May 19 01:25:38 [BSP] [30578]: [PGWS-GEN LOG_CRIT tid:30744 pthr:0x7033e4f0]: (PgwsIngest.cpp:81) getGuide(): channelArray.IsArray() == true
May 19 01:25:38 [BSP] [30578]: [PGWS-GEN LOG_CRIT tid:30744 pthr:0x7033e4f0]: (PgwsIngest.cpp:84) getGuide(): channel.isObject() == true
May 19 01:25:38 [BSP] [30578]: [PGWS-GEN LOG_CRIT tid:30744 pthr:0x7033e4f0]: (PgwsIngest.cpp:87) getGuide(): channelID.IsInt() == true, channelID= 0
May 19 01:25:38 [BSP] [30578]: [PGWS-GEN LOG_CRIT tid:30744 pthr:0x7033e4f0]: (PgwsIngest.cpp:94) getGuide(): majorChannelNumber.IsInt() == true, majorChannelNumber= 0
May 19 01:25:38 [BSP] [30578]: [PGWS-GEN LOG_CRIT tid:30744 pthr:0x7033e4f0]: (PgwsIngest.cpp:101) getGuide(): channelType.IsString() == true
May 19 01:25:38 [BSP] [30578]: [PGWS-GEN LOG_CRIT tid:30744 pthr:0x7033e4f0]: (PgwsIngest.cpp:102) getGuide(): channelType = SLL
May 19 01:25:38 [BSP] [30578]: [PGWS-GEN LOG_CRIT tid:30744 pthr:0x7033e4f0]: (PgwsIngest.cpp:109) getGuide(): shortName.IsString() == true
May 19 01:25:38 [BSP] [30578]: [PGWS-GEN LOG_CRIT tid:30744 pthr:0x7033e4f0]: (PgwsIngest.cpp:110) getGuide(): shortName = KWHY
char json 值被正确提取,但 int 值始终为 0。我是第一次 rapidjson 用户,所以我确定我正在犯一个简单的错误,但我没有立即看到它。
谢谢大家,
顺便说一句,json 表单通过http://www.freeformatter.com/json-validator.html所以我认为它是正确的。无论如何,它是机器生成的。