rapidjson 을 이용 하여 포 함 된 json 을 분석 하 는 방법 예제

rapidjson 을 이용 하여 포 함 된 json 을 분석 합 니 다.
json 꼬치 보기 1:{"system":{"version":"v2.6.1", "name":"value"}}잔말 말고 코드 를 직접 훑 어 라.

#include <iostream>
#include <stdio.h>
#include<unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include<sstream>
//         rapidjson
#include "rapidjson/prettywriter.h"
#include "rapidjson/rapidjson.h"
#include "rapidjson/document.h"
#include "rapidjson/stringbuffer.h"
#include "rapidjson/writer.h"
#include "rapidjson/memorystream.h"
using namespace std;
using rapidjson::Document;
using rapidjson::StringBuffer;
using rapidjson::Writer;
using namespace rapidjson;
string getVersion(const string &jvStr)
{
 Document document;
 if (document.Parse(jvStr.c_str()).HasParseError() || !document.HasMember("system")) 
 {
 return "";
 }
 const rapidjson::Value &jvObject = document["system"];
 if(!jvObject.IsObject())
 {
 return "";
 }
 if(!jvObject.HasMember("version"))
 {
 return "";
 }
 const rapidjson::Value &jv = jvObject["version"];
 return jv.GetString();
}
int main(int argc, char *argv[])
{
 string s = "{\"system\":{\"version\":\"v2.6.1\", \"name\":\"value\"}}";
 cout << s << endl;
 cout << getVersion(s) << endl;
 return 0;
}
결과:
{"system":{"version":"v2.6.1", "name":"value"}}
v2.6.1
문자열 다시 보기:{"system": "{\"version\":\"v2.6.1\", \"name\":\"value\"}"}직접 말 에 오 르 기:

#include <iostream>
#include <stdio.h>
#include<unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include<sstream>
//         rapidjson
#include "rapidjson/prettywriter.h"
#include "rapidjson/rapidjson.h"
#include "rapidjson/document.h"
#include "rapidjson/stringbuffer.h"
#include "rapidjson/writer.h"
#include "rapidjson/memorystream.h"
using namespace std;
using rapidjson::Document;
using rapidjson::StringBuffer;
using rapidjson::Writer;
using namespace rapidjson;
string getStringFromJson(const string &jsStr, const string &strKey) 
{ 
  Document document; 
  if (document.Parse(jsStr.c_str()).HasParseError() || !document.HasMember(strKey.c_str()))  
  { 
    return ""; 
  } 
  const rapidjson::Value &jv = document[strKey.c_str()]; 
  return jv.GetString(); 
} 
int main(int argc, char *argv[])
{
 string s = "{\"system\": \"{\\\"version\\\":\\\"v2.6.1\\\", \\\"name\\\":\\\"value\\\"}\"}";
 cout << s << endl;
 string str = getStringFromJson(s, "system");
 cout << str << endl;
 cout << getStringFromJson(str, "version") << endl;
 return 0;
}
결과:
{"system": "{\"version\":\"v2.6.1\", \"name\":\"value\"}"}
{"version":"v2.6.1", "name":"value"}
v2.6.1
두 번 째 방식 의 제 이 슨 꼬치 는 너무 징 그 러 워 보인다.
또한 제 이 슨 꼬치 를 해석 할 때 코어 덤 프 가 쉬 우 므 로 이상 판단 을 잘 하고 유형 에 도 주의해 야 한다 고 다시 한 번 강조 했다.
총결산
이상 은 이 글 의 모든 내용 입 니 다.본 고의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 참고 학습 가 치 를 가지 기 를 바 랍 니 다.여러분 의 저희 에 대한 지지 에 감 사 드 립 니 다.더 많은 내용 을 알 고 싶다 면 아래 링크 를 보 세 요.

좋은 웹페이지 즐겨찾기