c# / Json.net /我如何反序列化消息

本文关键字:反序列化 消息 Json net | 更新日期: 2023-09-27 17:54:29

请告诉我接下来我需要做什么?我需要这个消息在他们的专用字符串但我不知道该怎么做

还可以使用字典吗?

我收到的信息是…它在一个名为sServerResponse

的字符串中
{"pcname": "Kat", "pause": [], "ip": "192.168.1.100", "paused": 0, "services": [], "session": "", "shop": [], "end": 0, "used": 0, "start": 0, "timeup": 0, "follow": "sui", "consq": {"1": "basic", "3": "rounding", "2": "minimum"}, "stas": 0, "price": 0, "pc_status": 1, "account_details": {"3": "Member", "2": "Staff/Member", "4": "Timecode"}, "msg": "Connection/Update accepted.", "mac": "00112233445", "others": [], "remarks": "", "ticker": {"units": 1}, "fixed_time": [], "account": "", "pause_tmp": {"s": 0, "e": 0}, "ver": {}, "status_details": {"1": "Idle", "0": "Offline", "5": "Fixed", "4": "Open", "7": "Mem", "6": "Extended", "8": "Timecode"}, "cmd": "nothing", "load": 0, "deposit": [], "data": {"fixed": [], "open": 0}, "restirctions": {"start_button": 0, "keys": [{"ctrl-esc": 0}, {"alt-tab": 0}], "mouse": 1, "drives": [{"c": 0}, {"d": 0}], "desktop": 0, "task_manager": 0, "keyboard": 1, "taskbar": 0, "control_panel": 0}}

请引导我…我做过无数的谷歌搜索,读过无数的话题。在json.net上的示例甚至不能工作

编辑/更新:

我正在尝试这个

List<WrapperReader> datas;
 datas = new JavaScriptSerializer(new SimpleTypeResolver()).Deserialize<List<WrapperReader>>(jsonInput);

}

但是数据是空的,这里可能是什么问题?

更新2

我有点明白为什么会出错

就是这个类。

如果我要接收一个字符串数组。然后在我的类中,我必须将它声明为数组小数和日期也是一样

关于日期. .如果我有约会的话。我如何声明它以便它可以包含日期?

我要把代码写完,看看它是不是罪魁祸首

c# / Json.net /我如何反序列化消息


我给你们写了一个基本的例子。您可以使用没有Json。网络图书馆。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Script.Serialization;
namespace ConsoleApplication1
{
public class Customer
{
    public int CustomerID { get; set; }
    public string CustomerName { get; set; }
    public string CustomerSurname { get; set; }
    public override string ToString()
    {
        return this.CustomerID + " " + this.CustomerName + " " + this.CustomerSurname;
    }
}
 class Program
 {
    static void Main(string[] args)
    {
        string JSonData = @"[
        {
             ""CustomerID"": ""1"",
             ""CustomerName"": ""Mehmet"",
             ""CustomerSurname"": ""Tasköprü""
        },
        {
             ""CustomerID"": ""2"",
             ""CustomerName"": ""Cin"",
             ""CustomerSurname"": ""Ali""
        },
        {
             ""CustomerID"": ""3"",
             ""CustomerName"": ""Temel"",
             ""CustomerSurname"": ""Reis""
        }]";
        IList<Customer> iListData = new JavaScriptSerializer().Deserialize<IList<Customer>>(JSonData);
        foreach (var item in iListData)
            Console.WriteLine(item.ToString());
        Console.Read();
    }
}

}