Best Practice - XML To Excel

Posted by MemLeak on Programmers See other posts from Programmers or by MemLeak
Published on 2012-09-21T08:02:43Z Indexed on 2012/09/21 9:49 UTC
Read the original article Hit count: 352

Filed under:
|
|
|

I've to read a big XML file with a lot of information. Afterwards I extract the needed information (~20 Points(columns) / ~80 relevant Data (rows, some of them with subdatasets) and write them out in a Excel File.

My Question is how to handle the extraction (of unused Data) part,

  • should I copy the whole file and delete the unused parts, and then write it to excel
  • or is it a good approach to create Objects for each column?
  • should I write the whole xml to excel and start to delete rows in excel?

What would be performant and a acceptable solution?

© Programmers or respective owner

Related posts about java

Related posts about Xml