posted 12 years ago
My file parser application is parsing various XML files(but only one a time). The structure of all XML file is something as given below-
After parsing through such XML file I have a list of Hashmaps and a set of strings
In each Hashmap, key is tag name and value is tag data.
Set contains unique tag names (all is done through SAXParser).
Now my problem is that how to display the set elements as column header and only the values of each Hashmap per row in a table using JSP-bean-servlet/...
Any suggestions .