作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的类:
public class site
{
public string URL { get; set; }
}
它存在于 http 处理程序中。目前我正在将 json 发布到此处理程序并尝试反序列化它以从字符串中获取 URL。然而,我在反序列化部分遇到了问题。
我有一个字符串“jsonString”,它的 json 格式如下:
[{"URL":"http://www.google.com/etc/"}]
这是我的反序列化代码:
JavaScriptSerializer jsonSerializer = new JavaScriptSerializer();
string jsonString = String.Empty;
HttpContext.Current.Request.InputStream.Position = 0;
using (StreamReader inputStream = new StreamReader(HttpContext.Current.Request.InputStream))
{
jsonString = inputStream.ReadToEnd();
}
site currSite = new site();
currSite = jsonSerializer.Deserialize<site>(jsonString);
//set response types
HttpContext.Current.Response.ContentType = "application/json";
HttpContext.Current.Response.ContentEncoding = Encoding.UTF8;
//send response
HttpContext.Current.Response.Write(jsonSerializer.Serialize(currSite.URL));
然后我尝试使用 currSite.URL 发送响应,但它失败了。我在这里错过了什么?我有理由相信它在反序列化部分,因为如果我发送 jsonString 的响应而不是 currSite.URL,它将起作用。
最佳答案
您的 json 字符串表明它是一个数组,而不是单个实体。你应该反序列化它:
var result = jsonSerializer.Deserialize<site[]>(jsonString);
result[0].Url
应该包含您要查找的内容。
更新
添加示例代码:
string json = @"[{""URL"":""http://www.google.com/etc/""}]";
JavaScriptSerializer js = new JavaScriptSerializer();
var result = js.Deserialize<site[]>(json);
Console.WriteLine(result[0].URL);
关于c# - 在处理程序中将 Json 反序列化为 Object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14160768/
出于好奇,我尝试了一些原型(prototype)制作,但似乎只允许在第一个位置使用子例程的原型(prototype) &。 当我写作时 sub test (&$$) { do_somethin
我需要开发一个类似于 Android Play 商店应用程序或类似 this app 的应用程序.我阅读了很多教程,发现几乎每个教程都有与 this one 类似的例子。 . 我已经开始使用我的应用程
考虑一个表示“事件之间的时间”的列: (5, 40, 3, 6, 0, 9, 0, 4, 5, 18, 2, 4, 3, 2) 我想将这些分组到 30 个桶中,但桶会重置。期望的结果: (0, 1,
我是一名优秀的程序员,十分优秀!