ASP.NET中XML转JSON的方法
许多应用程序都将数据存储为XML的格式,而且会将数据以JSON的格式发送到客户端以做进一步处理。要实现这一点,它们必须将XML格式转换为JSON格式。
XML转JSON代码
- private static string XmlToJSON(XmlDocument xmlDoc)
- {
- StringBuilder sbJSON = new StringBuilder();
- sbJSON.Append("{ ");
- XmlToJSONnode(sbJSON, xmlDoc.DocumentElement, true);
- sbJSON.Append("}");
- return sbJSON.ToString();
- }
- // XmlToJSONnode: Output an XmlElement, possibly as part of a higher array
- private static void XmlToJSONnode(StringBuilder sbJSON, XmlElement node, bool showNodeName)
- {
- if (showNodeName)
- sbJSON.Append("\\"" + SafeJSON(node.Name) + "\\": ");
- sbJSON.Append("{");
- // Build a sorted list of key-value pairs
- // where key is case-sensitive nodeName
- // value is an ArrayList of string or XmlElement
- // so that we know whether the nodeName is an array or not.
- SortedList childNodeNames = new SortedList();
- // Add in all node attributes
- if( node.Attributes!=null)
- foreach (XmlAttribute attr in node.Attributes)
- StoreChildNode(childNodeNames,attr.Name,attr.InnerText);
- // Add in all nodes
- foreach (XmlNode cnode in node.ChildNodes)
- {
- if (cnode is XmlText)
- StoreChildNode(childNodeNames, "value", cnode.InnerText);
- else if (cnode is XmlElement)
- StoreChildNode(childNodeNames, cnode.Name, cnode);
- }
- // Now output all stored info
- foreach (string childname in childNodeNames.Keys)
- {
- ArrayList alChild = (ArrayList)childNodeNames[childname];
- if (alChild.Count == 1)
- OutputNode(childname, alChild[0], sbJSON, true);
- else
- {
- sbJSON.Append(" \\"" + SafeJSON(childname) + "\\": [ ");
- foreach (object Child in alChild)
- OutputNode(childname, Child, sbJSON, false);
- sbJSON.Remove(sbJSON.Length - 2, 2);
- sbJSON.Append(" ], ");
- }
- }
- sbJSON.Remove(sbJSON.Length - 2, 2);
- sbJSON.Append(" }");
- }
- // StoreChildNode: Store data associated with each nodeName
- // so that we know whether the nodeName is an array or not.
- private static void StoreChildNode(SortedList childNodeNames, string nodeName, object nodeValue)
- {
- // Pre-process contraction of XmlElement-s
- if (nodeValue is XmlElement)
- {
- // Convert <aa></aa> into "aa":null
- // <aa>xx</aa> into "aa":"xx"
- XmlNode cnode = (XmlNode)nodeValue;
- if( cnode.Attributes.Count == 0)
- {
- XmlNodeList children = cnode.ChildNodes;
- if( children.Count==0)
- nodeValue = null;
- else if (children.Count == 1 && (children[0] is XmlText))
- nodeValue = ((XmlText)(children[0])).InnerText;
- }
- }
- // Add nodeValue to ArrayList associated with each nodeName
- // If nodeName doesn't exist then add it
- object oValuesAL = childNodeNames[nodeName];
- ArrayList ValuesAL;
- if (oValuesAL == null)
- {
- ValuesAL = new ArrayList();
- childNodeNames[nodeName] = ValuesAL;
- }
- else
- ValuesAL = (ArrayList)oValuesAL;
- ValuesAL.Add(nodeValue);
- }
- private static void OutputNode(string childname, object alChild, StringBuilder sbJSON, bool showNodeName)
- {
- if (alChild == null)
- {
- if (showNodeName)
- sbJSON.Append("\\"" + SafeJSON(childname) + "\\": ");
- sbJSON.Append("null");
- }
- else if (alChild is string)
- {
- if (showNodeName)
- sbJSON.Append("\\"" + SafeJSON(childname) + "\\": ");
- string sChild = (string)alChild;
- sChild = sChild.Trim();
- sbJSON.Append("\\"" + SafeJSON(sChild) + "\\"");
- }
- else
- XmlToJSONnode(sbJSON, (XmlElement)alChild, showNodeName);
- sbJSON.Append(", ");
- }
- // Make a string safe for JSON
- private static string SafeJSON(string sIn)
- {
- StringBuilder sbOut = new StringBuilder(sIn.Length);
- foreach (char ch in sIn)
- {
- if (Char.IsControl(ch) || ch == '\\'')
- {
- int ich = (int)ch;
- sbOut.Append(@"\\u" + ich.ToString("x4"));
- continue;
- }
- else if (ch == '\\"' || ch == '\\\\' || ch == '/')
- {
- sbOut.Append('\\\\');
- }
- sbOut.Append(ch);
- }
- return sbOut.ToString();
- }
ASP.NET中XML转JSON的方法的更多相关文章
- ASP.net中导出Excel的简单方法介绍
下面介绍一种ASP.net中导出Excel的简单方法 先上代码:前台代码如下(这是自己项目里面写的一点代码先贴出来吧) <div id="export" runat=&quo ...
- xml转json的方法
.第一种方法 使用JSON-JAVA提供的方法,之前一直使用json-lib提供的方法转json,后来发现了这个开源项目,觉得用起来很不错,并且可以修改XML.java中的parse方法满足自己的转换 ...
- C#中XML和json互相转换
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Xm ...
- asp.net中获取当前url的方法
HttpContext.Current.Request.Url.ToString() 并不可靠. 如果当前URL为 http://localhost/search.aspx?user=http://c ...
- 在Asp.Net中使用SmtpMail发送邮件的方法
在ASP中,就可以通过调用CDONTS组件发送简单邮件,在ASP.Net中,自然也可以.不同的是,.Net Framework中,将这一组件封装到了System.Web.Mail命名空间中. 一个典型 ...
- 慎重Asp.net中static变量的使用方法
在.Net平台下进行CS软件开发时,我们常常遇到以后还要用到某些变量上次改动后的值,为了简单起见,非常多人都习惯用static来定义这些变量,我也是.这样非常方便.下一次调用某个函数时该变量仍然保存的 ...
- java中常见的json解析方法、库以及性能对比
常见的json解析有原生的JSONObject和JSONArray方法,谷歌的GSON库,阿里的fastjson,还有jackson,json-lib. Gson(项目地址:https://githu ...
- java 中xml转换为json对象
1.前提须要jar包: json-lib-2.4-jdk15.jar 和 xom-1.2.5.jar ,maven 仓库: net.sf.json-lib json-lib 2.4 jdk15 xom ...
- java中Xml、json之间的相互转换
旁白: 最近关于xml与json之间的转换都搞蒙了,这里写一个demo,以后备用. 正题: project格式是: jar包是一个一个检出来的,还算干净了. 代码: 工具类: package exer ...
随机推荐
- 【三】注入框架RoboGuice使用:(Your First Resource Injection)
上一篇我们简单的介绍了一下RoboGuice的使用([二]注入框架RoboGuice使用:(Your First View Injection)),今天我们来看下资源文件的使用注解的方法: 为了在Ac ...
- hdu3836联通的强还原性点
Equivalent Sets Time Limit: 12000/4000 MS (Java/Others) Memory Limit: 104857/104857 K (Java/Other ...
- Maven直接部署Web应用Tomcat
1. 下载解压版tomcat,并配置环境变量.所以tomcat你可以成功启动. 使用版本解压tomcat可以方便查看tomcat的后台输出的出错信息,便于调试. 2. 给tomcat配置用户名密码. ...
- hexo 部署至Git遇到的坑
查找资料的时候发现了next这个博客主题,next!非常的漂亮,顺手查看了hexo的相关部署. Hexo官方介绍 Hexo 是一个快速.简洁且高效的博客框架.Hexo 使用 Markdown(或其他渲 ...
- COM-TEAM
- 控件注册 - 利用资源文件将dll、ocx打包进exe文件(C#版)
原文:控件注册 - 利用资源文件将dll.ocx打包进exe文件(C#版) 很多时候自定义或者引用控件都需要注册才能使用,但是如何使要注册的dll或ocx打包到exe中,使用户下载以后看到的只是一个e ...
- Error creating bean with name 'com.you.user.dao.StudentDaoTest': Injection of autowired dependencies
1.错误叙述性说明 七月 13, 2014 6:37:41 下午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadB ...
- 值得关注的10个python语言博客(转)
大家好,还记得我当时学习python的时候,我一直努力地寻找关于python的博客,但我发现它们的数量很少.这也是我建立这个博客的原因,向大家分享我自己学到的新知识.今天我向大家推荐10个值得我们关注 ...
- 金蝶K3无法创建数据库,请查看该文件夹的错误的解决方法。
无法创建数据库! 检查你的文件夹C:\XXX\DATA是否存在.并且该系统是不低,或SQL Server服务的启动用户不具备<K3ERP\DBFILE>文件夹的写权限.请改动Windows ...
- Codeforces Round #265 (Div. 2) C. No to Palindromes! 构建无回文串子
http://codeforces.com/contest/465/problem/C 给定n和m,以及一个字符串s,s不存在长度大于2的回文子串,如今要求输出一个字典比s大的字符串,且串中字母在一定 ...