在此,僅對本身出現的問題作個總結,沒想到能幫到你們。php
本地C++桌面程序,用jsoncpp 對json和服務端進行通訊,靜態庫編譯不能用,故採用的源碼拷貝進行調用json
服務端 用php和客戶端進行通訊服務器
服務端json 解碼和編碼的兩個函數 json_encode json_decode 編輯器
若是使用在使用json_encode的中的字符串中有中文的話,有可能會出現,編碼後,字符串爲空,ide
這個我遇到的一個緣由是 php腳本文件的類型是ansi 而不是utf8 ,因此用txt文本編輯器,將腳本另存爲 utf8便可,若是沒有解決問題,只能繞道找找別的緣由和方法了。函數
再說說客戶端C++桌面應用程序,使用jsoncpp 和服務器通訊,上傳json數據的時候,json的中文老是會不對,要麼亂碼,要麼沒有值。工具
好像之前看過哪篇文章,記不清了,在這裏提一句,對不對看各位的理解,錯了,請指出,或者不會產生誤導就行。說是jsoncpp 只支持ansi編碼的字符串數據格式編碼
多是讓我瞎貓碰到死耗子了吧,折騰了一個多小時的問題,用這個辦法解決了。spa
本人的編譯環境vs2015 win7 平臺編碼字符集爲unicode code
用jsoncpp 編碼上傳老是出錯,用工具函數UnicodeToANSI一轉,再傳輸,就沒有問題了。下面貼一下,經常使用的幾個工具函數,建議封裝成一個工具類,函數聲明爲靜態函數,經過類名::函數名直接調用便可
#include "cutil.h" #include <Windows.h> wstring CUtil::UTF8ToUnicode(const string& str) { int len = 0; len = str.length(); int unicodeLen = ::MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, NULL, 0); wchar_t * pUnicode; pUnicode = new wchar_t[unicodeLen + 1]; memset(pUnicode, 0, (unicodeLen + 1)*sizeof(wchar_t)); ::MultiByteToWideChar(CP_UTF8, 0, str.c_str(), -1, (LPWSTR)pUnicode, unicodeLen); wstring rt; rt = (wchar_t*)pUnicode; delete pUnicode; return rt; } string CUtil::UnicodeToUTF8(const wstring& str) { char* pElementText; int iTextLen; // wide char to multi char
iTextLen = WideCharToMultiByte(CP_UTF8, 0, str.c_str(), -1, NULL, 0, NULL, NULL); pElementText = new char[iTextLen + 1]; memset((void*)pElementText, 0, sizeof(char) * (iTextLen + 1)); ::WideCharToMultiByte(CP_UTF8, 0, str.c_str(), -1, pElementText, iTextLen, NULL, NULL); string strText; strText = pElementText; delete[] pElementText; return strText; } wstring CUtil::ANSIToUnicode(const string& str) { int len = 0; len = str.length(); int unicodeLen = ::MultiByteToWideChar(CP_ACP, 0, str.c_str(), -1, NULL, 0); wchar_t * pUnicode; pUnicode = new wchar_t[unicodeLen + 1]; memset(pUnicode, 0, (unicodeLen + 1)*sizeof(wchar_t)); ::MultiByteToWideChar(CP_ACP, 0, str.c_str(), -1, (LPWSTR)pUnicode, unicodeLen); wstring rt; rt = (wchar_t*)pUnicode; delete pUnicode; return rt; } string CUtil::UnicodeToANSI(const wstring& str) { char* pElementText; int iTextLen; // wide char to multi char
iTextLen = WideCharToMultiByte(CP_ACP, 0, str.c_str(), -1, NULL, 0, NULL, NULL); pElementText = new char[iTextLen + 1]; memset((void*)pElementText, 0, sizeof(char) * (iTextLen + 1)); ::WideCharToMultiByte(CP_ACP, 0, str.c_str(), -1, pElementText, iTextLen, NULL, NULL); string strText; strText = pElementText; delete[] pElementText; return strText; }
代碼中調用
string str = CUtil::UnicodeToANSI(client->GetName().GetBuffer(0));
login["name"] = str;
到此,個人問題解決了,歡迎留言探討,總有不一樣的問題,也總有不一樣的方法應對。
本人較懶,對原理的東西弄得有些含糊。
惟有下的苦功,纔可習得真功啊!