Created
October 5, 2012 20:09
-
-
Save SneakyBrian/3842071 to your computer and use it in GitHub Desktop.
XML2JSON command line tool, uses JSON.NET. Usage: XML2JSON.exe input.xml output.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.IO; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
using System.Xml; | |
using Newtonsoft.Json; | |
using Formatting = Newtonsoft.Json.Formatting; | |
namespace XML2JSON | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var inputXml = args[0]; | |
var outputJson = args[1]; | |
var doc = new XmlDocument(); | |
doc.Load(inputXml); | |
//strip comments from xml | |
var comments = doc.SelectNodes("//comment()"); | |
if (comments != null) | |
{ | |
foreach (var node in comments.Cast<XmlNode>()) | |
{ | |
if (node.ParentNode != null) | |
node.ParentNode.RemoveChild(node); | |
} | |
} | |
var rawJsonText = JsonConvert.SerializeXmlNode(doc.DocumentElement, Formatting.Indented); | |
//strip the @ and # characters | |
var strippedJsonText = Regex.Replace(rawJsonText, "(?<=\")(@)(?!.*\":\\s )", string.Empty, RegexOptions.IgnoreCase); | |
strippedJsonText = Regex.Replace(strippedJsonText, "(?<=\")(#)(?!.*\":\\s )", string.Empty, RegexOptions.IgnoreCase); | |
//save out | |
using (var outputFileStream = File.Open(outputJson, FileMode.Create, FileAccess.Write)) | |
{ | |
using (var outputStreamWriter = new StreamWriter(outputFileStream)) | |
{ | |
outputStreamWriter.Write(strippedJsonText); | |
outputStreamWriter.Flush(); | |
outputStreamWriter.Close(); | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment