0

我是赢得 7 应用程序开发的新手。我已经在 android 中完成了 app dev 并使用了 org.json 本机库。示例:org.json.JSONArray, org.json.JSONException,org.json.JSONObject

我希望 C# 中的功能与我在 java 中使用此 json 库的功能相似。请告诉我最好的库来做到这一点。目前我正在使用 codetitans 库。代码 :

JSonWriter wr = new JSonWriter(); 
wr.WriteObjectBegin();
wr.WriteMember("set_cookie","0");
wr.WriteMember("test",writer.ToString());
wr.WriteObjectEnd();
string line = wr.ToString();
/* This creates a jsonwriter object and then write key, value pairs.*/
4

2 回答 2

3

You may also want to consider ServiceStack.Text as this has recently been shown to be the fastest JSON serialiser available.

于 2012-05-16T15:33:04.593 回答
3

我建议尝试 JSON.NET:-

http://json.codeplex.com/

下面提供了一个示例,说明如何使用 JSON.NET 进行序列化和反序列化:-

http://james.newtonking.com/projects/json-net.aspx

于 2012-05-16T12:57:16.220 回答