What is the best and simple way to generate xhtml from an csv file in java at the server side? Isn't jsp the right tool for it or are there better options.?
Thanks.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35223
7
posted
0
JSP would be the way to go if the XHTML is to be served to a browser. Any actual file I/O (and further processing, if there is any) should be done in a backing bean or a servlet, though, not in the JSP itself.
Thanks, that was fast.
It stays on the server side and will be delivered to a Content Delivery Platform.
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
6
posted
0
Moving off to servlets since has little to do with HTML/JavaScript other than the final outcome.
Eric
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12265
1
posted
0
If this was my problem I would get an example of the desired XHTML text and study it to find regular features which could turn into Java classes and methods. Since an XHTML page forms a DOM there will be a logical hierarchy.
Try to locate the point at which a line of CSV gets turned into XHTML - is this a line in a Table or what.
Is the final result entirely derived from the CSV or is their other content which must be included?