Property File Parser Task

Develop a program that reads a property file in name=value format and produces an XML file in the format


<properties>
<name>value</name>
</properties>

You cannot use java.util.Properies or java.util.prefs.

Use the following sample property file to validate your code:
Input property file
You’re supposed to see the following output:
Output XML file

You don’t have to implement entire property file specification (although you can use it as a guideline). Run your program for the provided input and make sure that the output matches the expected output file, that’s all that’s required. Obviously, since this is XML, only tags and content have to match, the formatting of the XML file does not matter.