我有这个字符串存储在我的数据库:

str = "{ "context_name": { "lower_bound": "value", "upper_bound": "value", "values": [ "value1", "valueN" ] } }"

这个字符串已经是JSON格式,但我想把它转换成一个JObject或JSON对象。

JObject json = new JObject();

我尝试了json = (JObject)str;铸,但它没有工作,所以我怎么能做到呢?


当前回答

你可以这样尝试:

string output = JsonConvert.SerializeObject(jsonStr);

其他回答

如果你的JSon字符串有“”双引号而不是单引号,并且有\n作为下一行的指示符,那么你需要删除它,因为这不是一个正确的JSon字符串,示例如下所示:

            SomeClass dna = new SomeClass ();
            string response = wc.DownloadString(url);
            string strRemSlash = response.Replace("\"", "\'");
            string strRemNline = strRemSlash.Replace("\n", " ");
            // Time to desrialize it to convert it into an object class.
            dna = JsonConvert.DeserializeObject<SomeClass>(@strRemNline);

你可以这样尝试:

string output = JsonConvert.SerializeObject(jsonStr);

有一种有趣的方法来实现另一个目标,那就是用一个非常强大的工具来实现一个基于json的强类型类,我几天前第一次使用这个工具来将tradedoubler json结果转换为类

是一个简单的工具:复制你的json源粘贴和在几秒钟,你将有一个强类型类json面向。 通过这种方式,您将使用这些功能更强大且易于使用的类。

这是

    string str = "{ 'context_name': { 'lower_bound': 'value', 'pper_bound': 'value', 'values': [ 'value1', 'valueN' ] } }";
    JavaScriptSerializer j = new JavaScriptSerializer();
    object a = j.Deserialize(str, typeof(object));

这在JObject中不起作用,这适用于简单的json格式数据。我已经尝试了以下json格式的数据在类型中反序列化,但没有得到响应。

对于这个Json

{
  "Customer": {
    "id": "Shell",
    "Installations": [
      {
        "id": "Shell.Bangalore",
        "Stations": [
          {
            "id": "Shell.Bangalore.BTM",
            "Pumps": [
              {
                "id": "Shell.Bangalore.BTM.pump1"
              },
              {
                "id": "Shell.Bangalore.BTM.pump2"
              },
              {
                "id": "Shell.Bangalore.BTM.pump3"
              }
            ]
          },
          {
            "id": "Shell.Bangalore.Madiwala",
            "Pumps": [
              {
                "id": "Shell.Bangalore.Madiwala.pump4"
              },
              {
                "id": "Shell.Bangalore.Madiwala.pump5"
              }
            ]
          }
        ]
      }
    ]
  }
}