English 中文(简体)
从Xml文档中生成html文档[复制]
原标题:Generating html files from xml file [duplicate]

I have a web page where the information of all the users are stored and I am storing the information of the users in a xml file. COnsider the name of the xml file "abc.xml" when the users to open the same page say "www.domain.com/abc.html" I neeed to constracut the HTML fetching the data from the xml using servlets.

最佳回答

几种可能的(明确)方法:

  • deserialize the xml file with XStream or jaxb, feed the deserialized data to a JSP and generate the HTML server side.
  • use XSLT to have the html rendering done client side.

对于我来说,他们之间没有“最佳”选择,这取决于你们的使用情况和制约因素。

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签