There are times when you need to convert data from one format to the other and you don’t have any tools to do it, or you must do it so many times that it becomes difficult to do it manually. In this case, writing a C# program may be the easiest thing to do.
The program can’t be very difficult to code, at at some point it will be thrown, the procedure will be disposable. So, we’ll devise a simple way to convert the file (or files).
Let’s say we have a file like this one (obtained here):
The first step would be convert the XML structure to a C# class. For this file, doing it manually can be an easy task, but for some files, it's too much work. Thankfully, we have two easy ways to do it:
- Using xsd.exe - xsd is a tool that converts xml to C# classes. All you have to do is to open a Visual Studio command prompt (in Visual Studio, go to Tools/Command Prompt) and type:
The first command will create the Books.xsd file and the second one will create the Books.cs file that can be included in your project.
- Using Visual Studio - now, Visual Studio has an easy way to convert XML and Json into C# (or VB.NET) classes. Just open the XML file, select the data and copy it to the clipboard. Then, in Visual Studio, create a new class, go to Edit/Paste Special/Paste XML as Classes and voilà - you have the C# class for the XML
With this class, we can read the XML file and deserialize it to an instance of the catalog class:
Note that we are using the new C# 8 using statement feature to minimize nesting.
Now, we can use the new System.Text.Json namespace, available in .NET Core 3.1 or .NET 5.0, to convert the class to Json:
When we execute the code, we have the converter to convert the xml file into json. Yes, it works only with this kind of xml file, but it took us no time to assemble it. As a disposable program, it clearly does its job and you have the tool you need to convert the files.
The full source code for this project is at https://github.com/bsonnino/xmltojson