Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个要在 C++ 中读取的 Gson 序列化字符串 例如:
String jsonDealer = [{"dealerID":"VARSSWK103","dealerName":"Dealer ABC"}, {"dealerID":"VARSSTH008","dealerName":"Dealer XYZ"}]
如何将其转换为 C++ 对象,以便检索经销商 ID 和经销商名称?
GSON是一个Java库,用于解析并序列化为JSON格式。
所以你想要一个处理 JSON 的 C++ 库。其中有很多;我建议使用jsoncpp
当然,您需要定义您的 C++ 应用程序类(例如您Dealer的 .
Dealer