Hi, As title but would like the flexibility to specify how the output xml file will look like. Any free tool available on windows platform that I can use to achieve that? Thanks
|
|
You can use Elev.at (http://elev.at) to convert from XLS to XML. It is a free web API. |
||
|
|
|
|
You can use DBUnit and Java:
This will give you cells as attributes. Use XmlDataSet instead of FlatXmlDataSet if you want your XML formatted differently. |
|||
|
|
|
|
Use XSLT to obtain required output format. CSV -> CSV2XML -> XSLT -> XML XSLT is the true and straight way "to specify how the output xml file will look like". |
||
|
|
|
|
I haven't tried this but it looks like it handles your problem. Good luck! |
||
|
|
|
|
Hmm.. I am looking for more a ready use tool, not really for programming purpose, I checked this http://csv2xml.sourceforge.net/ before posting but it lack the flexibility for me to configure how the output format look like, |
||
|
|
|
|
I think what you're looking for is Microsoft LogParser. Jeff did a post about it awhile back. Here are the forums if you need it but it's pretty straight forward. |
|||
|
|
|
|
Since its open source, you should find the flexibility you need. http://csv2xml.sourceforge.net/ |
||
|
|
|
|
You could read it into a dataset and use the dataset's WriteXML methods to output to XML. It looks like this guy used XSLT. |
||
|
|
