zoukankan      html  css  js  c++  java
  • ASP.net解析JSON

    using System;

    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.Script.Serialization;    //导入解析Json的类
     
     
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            string JSON = "{'info':[{'title':'list1','url':'/upload/209/20120814163339890.png'},{'title':'离职申请表','url':'/upload/209/20120814163339968.xls'},{'title':'申请表','url':'/upload/209/20120814163340046.doc'},{'title':'室内','url':'/upload/209/20120814163340156.jpg'},{'title':'心电图','url':'/upload/209/20120814163340218.gif'},{'title':'新建 文本文档','url':'/upload/209/20120814163340281.txt'}]}";
            JavaScriptSerializer serializer = new JavaScriptSerializer();
            Dictionary<stringobject> json = (Dictionary<stringobject>)serializer.DeserializeObject(JSON);
            object[] info = (object[])json["info"];
            Dictionary<stringobject> val;
            Dictionary<intstring> Objs = null;
            Dictionary<intstring> fileOldName = null;
            for (int i = 0; i < info.Length; i++)
            {
     
                val = (Dictionary<stringobject>)info[i];
     
                foreach (KeyValuePair<stringobject> str in val)
                {
                    //保存信息到 session
                    if (Session["bigfile_info"] == null)
                    {
                        Objs = new Dictionary<intstring>();
                        Session["bigfile_info"] = Objs;
                    }
                     
                    if (Session["file_name"] == null)
                    {
                        fileOldName = new Dictionary<intstring>();
                        Session["file_name"] = fileOldName;
                    }
     
                    if (str.Key.Equals("title"))
                    {
                        fileOldName[i + 1] = str.Value.ToString();
                    }
     
                    if (str.Key.Equals("url"))
                    {
                        Objs[i + 1] = str.Value.ToString();
                    }
                }
     
            }
            Session["bigfile_info"] = Objs;
            Session["file_name"] = fileOldName;
     
            if (Session["file_name"] != null)
            {
                Objs = (Dictionary<intstring>)Session["file_name"];
                foreach (int in Objs.Keys)
                {
                    lblJson.Text += Objs[i];
                }
            }
     
        }
    }
  • 相关阅读:
    kubernetes 中遇见的一些坑(持续更新)
    Docker网络解决方案-Flannel部署记录
    理解Docker :Docker 网络
    全面剖析Redis Cluster原理和应用
    python发送钉钉机器人脚本
    centos 7 部署LDAP服务
    zabbix 同步ldap帐号脚本
    zabbix TCP 连接数监控
    WebDriver基本操作入门及UI自动化练手页面
    Jmeter使用入门
  • 原文地址:https://www.cnblogs.com/Echo529/p/6386784.html
Copyright © 2011-2022 走看看