vote up 0 vote down star

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

flag

17% accept rate
How is this programming related? – Ken White Oct 30 at 20:09

8 Answers

vote up 0 vote down

You can use Elev.at (http://elev.at) to convert from XLS to XML. It is a free web API.

link|flag
vote up 0 vote down

You can use DBUnit and Java:

import java.io.ByteArrayOutputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.OutputStream;
import org.dbunit.dataset.DataSetException;
import org.dbunit.dataset.IDataSet;
import org.dbunit.dataset.excel.XlsDataSet;
import org.dbunit.dataset.xml.FlatXmlDataSet;

public class XlsToXml {
    public static void main(String[] args) {    
        try {
            FileInputStream stream = new FileInputStream(args[0]);
            IDataSet dataset = new XlsDataSet(stream);
            OutputStream out = new ByteArrayOutputStream();
            FlatXmlDataSet.write(dataset, out);
            System.out.println(out);
        } catch (Exception e) { 
            e.printStackTrace();
        }
    }        
}

This will give you cells as attributes. Use XmlDataSet instead of FlatXmlDataSet if you want your XML formatted differently.

link|flag
vote up 1 vote down

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".

link|flag
vote up 0 vote down

I haven't tried this but it looks like it handles your problem.

Good luck!

link|flag
vote up 0 vote down

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,

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Since its open source, you should find the flexibility you need. http://csv2xml.sourceforge.net/

link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.