Windows Phone 7中的JSON解析
本文关键字:JSON 解析 中的 Phone Windows | 更新日期: 2023-09-27 18:18:46
所以,我在网上到处找了一些关于如何解析JSON字符串然后将信息保存到特定变量的例子,但我对c#和Windows Phone 7开发非常陌生(只做了一个星期,但我很快就学会了,因为我很了解c++)。我很难理解我应该如何处理这个问题,所以我只会给你我想要解析的代码和我到目前为止的代码。
我已经使用http://jsonlint.com/Validator验证了我的JSON信息。以下是我想要解析的JSON信息(位于网站上):
[
{
"id": 19019,
"model": "tester",
"fields":
{
"name": "thename",
"slot": 45,
"category": "thecategory"
}
}
]
下面是我试图用来解析JSON信息并将其存储为变量的代码,以便稍后在程序中调用该信息:
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Windows.Resources;
using Microsoft.Phone.Controls;
using System.Collections.ObjectModel;
using System.IO;
using System.Net;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Json;
namespace PhoneApp
{
public partial class MainPage : PhoneApplicationPage
{
public MainPage()
{
InitializeComponent();
}
private void myButton_Click(object sender, RoutedEventArgs e)
{
WebClient client = new WebClient();
client.OpenReadCompleted += (s, eargs) =>
{
var serializer = new DataContractJsonSerializer(typeof(RootObject));
var theItem = (RootObject)serializer.ReadObject(eargs.Result);
myTextBlock.Text = theItem.pk.ToString();
};
client.OpenReadAsync(new Uri("http://www.example.com/i/19019/json"));
}
}
public class RootObject
{
public int pk { get; set; }
public string model { get; set; }
public Item item { get; set; }
}
public class Item
{
public string name { get; set; }
public int slot { get; set; }
public string category { get; set; }
}
}
就这段代码而言,myTextBlock是我的Windows Phone 7应用程序中的一个文本块,它具有显示文本的空间,而myButton是用户点击以显示文本的按钮(一旦我得到这个固定,我将以不同的方式显示文本)。现在,每当我启动这段代码时,它都会很好地初始化应用程序,但是当我单击按钮时,它会给我一个InvalidCastException是未处理的与细节当从一个数字转换时,值必须小于无穷大。代码错误:
var theItem = (RootObject)serializer.ReadObject(eargs.Result);
我希望我已经给出了足够的信息来帮助我解决这个问题。我更喜欢使用默认情况下内置在Windows Phone 7 SDK中的库,但如果我想做的事情使用JSON等外部库会更好。NET或其他兼容的,那么我愿意学习,如果你提供适当的链接来学习它。我很感激你们能给予的任何帮助。
干杯!
您可以使用Json对输入字符串进行反序列化。Net [抱歉外部库:(]如下
var root = JsonConvert.DeserializeObject<RootObject[]>(inputString);
public class RootObject
{
public int id { get; set; }
public string model { get; set; }
public Item fields { get; set; }
}
public class Item
{
public string name { get; set; }
public int slot { get; set; }
public string category { get; set; }
}
EDIT>>这是完整的源代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace ConsoleApplication1
{
public class MyClass
{
public static void Main(string[] args)
{
string inputString = @"
[
{
""id"": 19019,
""model"": ""tester"",
""fields"":
{
""name"": ""thename"",
""slot"": 45,
""category"": ""thecategory""
}
}
]
";
var root = JsonConvert.DeserializeObject<RootObject[]>(inputString);
foreach (var item in root)
{
Console.WriteLine(item.id + " " + item.model + " " + item.fields.name + " " + item.fields.category);
}
}
}
public class RootObject
{
public int id { get; set; }
public string model { get; set; }
public Item fields { get; set; }
}
public class Item
{
public string name { get; set; }
public int slot { get; set; }
public string category { get; set; }
}
}
这是一种无需外部库的解析方法
[DataContract]
public class InfoJson
{
[DataMember]
public int id { get; set; }
public static InfoJson[] parseArray(String json)
{
var serializer = new DataContractJsonSerializer(typeof(InfoJson[]));
using (MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(json)))
{
return (InfoJson[]) serializer.ReadObject(ms);
}
}
}
下面的代码是使用HTTP客户端从Web获取响应并解析它的简单而完整的代码:
var httpClient = new HttpClient(new HttpClientHandler());
var url ="http://www.example.com/i/19019/json";
HttpResponseMessage response = await httpClient.GetAsync(url);
var data = response.Content.ReadAsStringAsync();
var result= JsonConvert.DeserializeObject<RootObject>(data.Result.ToString());
你可以访问数据成员:
result.id;