i want to convert my input Excel file into the Output XML file.
If anybody has any solution in java for how to take input Excel file and how to write to XML as output,please give any code or any URL or any other solution.
Thanks,
Mishal Shah
|
|
Look into the jexcel or Apache POI libraries for reading in the Excel file. Creating an XML file is simple, either just write the XML out to a file directly, or append to an XML Document and then write that out using the standard Java libs or Xerces or similar. |
|||
|
|
I have done conversion of Excel(xlsx) to xml in Java recently. I assumed each row in excel as a single object here. Here are the steps I followed:-
Ready to provide code if required Here's where you can start https://sites.google.com/site/arjunwebworld/Home/programming/jaxb-example |
||||
|
|
|
JExcel was easy for me to use. Put jxl.jar on the classpath and code something like:
See http://jexcelapi.sourceforge.net/resources/faq/ to get started and link to download area. |
|||
|
|
|
||||
|
|
|
You can see my answer for doing CSV to XML at Converting CSV File to XML in Java. Just replace the DataReader instance with the following:
Cheers. |
|||
|
|