怎么在C++中對(duì)XML與JSON格式進(jìn)行轉(zhuǎn)換?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
成都創(chuàng)新互聯(lián)公司致力于互聯(lián)網(wǎng)品牌建設(shè)與網(wǎng)絡(luò)營(yíng)銷,包括做網(wǎng)站、成都網(wǎng)站制作、SEO優(yōu)化、網(wǎng)絡(luò)推廣、整站優(yōu)化營(yíng)銷策劃推廣、電子商務(wù)、移動(dòng)互聯(lián)網(wǎng)營(yíng)銷等。成都創(chuàng)新互聯(lián)公司為不同類型的客戶提供良好的互聯(lián)網(wǎng)應(yīng)用定制及解決方案,成都創(chuàng)新互聯(lián)公司核心團(tuán)隊(duì)十年專注互聯(lián)網(wǎng)開發(fā),積累了豐富的網(wǎng)站經(jīng)驗(yàn),為廣大企業(yè)客戶提供一站式企業(yè)網(wǎng)站建設(shè)服務(wù),在網(wǎng)站建設(shè)行業(yè)內(nèi)樹立了良好口碑。
appid-value111111 mch_id-value22222 nonce_str-value3333333 transaction_id-value44444444 sign-value5555555555
上面的報(bào)文是在三方支付里面常見的報(bào)文,這次我們來實(shí)現(xiàn)對(duì)這段報(bào)文的Json格式的自由轉(zhuǎn)換。
#include#include #include "tinyxml2.h" #include "nlohmann/json.hpp" using json = nlohmann::json; using namespace tinyxml2; using namespace std; string xml2json(string &src) { XMLDocument doc; doc.Parse( src.c_str() ); json root; XMLElement* rootElement = doc.RootElement(); XMLElement* child = rootElement->FirstChildElement(); while(child) { const char* title = child->Name() ; const char* value = child->GetText(); child = child->NextSiblingElement(); root[title]=value ; } return root.dump() ; } string json2xml(string& src) { XMLDocument xmlDoc; XMLNode * pRoot = xmlDoc.NewElement("xml"); xmlDoc.InsertFirstChild(pRoot); auto j3 = json::parse(src.c_str()); for (json::iterator it = j3.begin(); it != j3.end(); ++it) { string key = it.key(); string value = it.value() ; XMLElement * pElement = xmlDoc.NewElement(key.c_str()) ; pElement->SetText(value.c_str()) ; pRoot->InsertEndChild(pElement); } XMLPrinter printer; pRoot->Accept( &printer ); return printer.CStr(); } int main() { string src = " \ " ; string json = xml2json(src) ; string xml = json2xml(json) ; cout << json ; cout << endl ; cout << xml ; }appid-value111111 \mch_id-value22222 \nonce_str-value3333333 \transaction_id-value44444444 \sign-value5555555555 \
這次我們使用tinyxml2 和nlohmann json 做轉(zhuǎn)換,需要將兩者的頭文件和源代碼文件下載,并在編譯中include。
nolhmann json 需要C++ 11 的支持,gcc版本需要在4.7以上。
可以使用下面命令編譯:
g++ -std=c++11 xmljson.cpp tinyxml2.cpp -I./
./a.out {"appid":"appid-value111111","mch_id":"mch_id-value22222","nonce_str":"nonce_str-value3333333","sign":"sign-value5555555555","transaction_id":"transaction_id-value44444444"}appid-value111111 mch_id-value22222 nonce_str-value3333333 sign-value5555555555 transaction_id-value44444444
C++常用函數(shù) XML JSON格式轉(zhuǎn)換https://www.cppentry.com/benc...
開發(fā)資料https://www.cppentry.com
知識(shí)點(diǎn)擴(kuò)展:C++常用的系統(tǒng)函數(shù)
數(shù)學(xué)
1 三角函數(shù)
double sin (double);
double cos (double);
double tan (double);
2 反三角函數(shù)
double asin (double); 結(jié)果介于[-PI/2, PI/2]
double acos (double); 結(jié)果介于[0, PI]
double atan (double); 反正切(主值), 結(jié)果介于[-PI/2, PI/2]
double atan2 (double, double); 反正切(整圓值), 結(jié)果介于[-PI/2, PI/2]
3 雙曲三角函數(shù)
double sinh (double);
double cosh (double);
double tanh (double);
4 指數(shù)與對(duì)數(shù)
double exp (double x); e的x次冪
double pow (double x, double y); x的y次冪
double sqrt (double);
double log (double x); 以e為底的對(duì)數(shù),即ln x
double log10 (double x);log10(x) 以10為底。
沒有以2為底的函數(shù)但是可以用換底公式解 決:log2(N)=log10(N)/log10(2)
5 取整
double ceil (double); 不小于x的最小整數(shù)
double floor (double); 不大于x的最大整數(shù)
6 絕對(duì)值
int abs(int);整型
long labs(long);長(zhǎng)整型
double fabs (double);浮點(diǎn)型
7 標(biāo)準(zhǔn)化浮點(diǎn)數(shù)
double frexp (double f, int p); 標(biāo)準(zhǔn)化浮點(diǎn)數(shù), f = x 2^p, 已知f求x, p ( x介于[0.5, 1] )
double ldexp (double x, int p); 與frexp相反, 已知x, p求f
8 取整與取余
double modf (double, double*); 將參數(shù)的整數(shù)部分通過指針回傳, 返回小數(shù)部分
double fmod (double, double); 返回兩參數(shù)相除的余數(shù)
9.平方根
double sqrt(double x);
字符
int isalpha(int c);c是否為字母
int isdigit(int c);c是否為數(shù)字
int tolower(int c);將c轉(zhuǎn)換為小寫字母
int toupper(int c);將c轉(zhuǎn)換為大寫字母
字符串
char strcpy(char sl,char s2);將字符串s2復(fù)制給s1,即覆蓋
unsigned strlen(char sr);求字符串str長(zhǎng)度
內(nèi)存操作
void memcpy(void d,void *s,int c);將s指向的內(nèi)存區(qū)域的c個(gè)字節(jié)復(fù)制到d指向的區(qū)域
類型轉(zhuǎn)換
int atoi(char s);將字符串轉(zhuǎn)化為整數(shù)
char itoa(int v,char *s,int x);將整數(shù)v按x進(jìn)制轉(zhuǎn)成字符串s
時(shí)間
time_t time(time_t *timer);返回1970/1/1零點(diǎn)到目前的秒數(shù)
其他
srand(unsigned seed);設(shè)置隨機(jī)數(shù)的種子
int rand();產(chǎn)生0-RAND_MAX的隨機(jī)數(shù)
exit(int);終止正在執(zhí)行的程序
keep going
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。