在Java中从xml文件创建html表头
我需要一些关于我正在尝试解决的问题的说明:
我想从 xml 文件创建一个 html 表,我想 根据xml中的元素创建表头 文件如下:
<xml>
<fields>
<field>
<name>A</name>
</field>
<merge label="D">
<field>
<name>B</name>
</field>
<field>
<name>C</name>
</field>
</merge>
</fields>
</xml>
应该生成这样的表头:
/========================\ \
| | D | |
| A |------------| |- table header
| | B | C | |
|========================| /
| ..... | .. | ... |
\========================/
对于如何使用 Java 执行此操作有什么想法吗?
I need some light here on this problem I'm trying to solve:
I want to create an html table from a xml file and I'd like
to create a table header according to the elements in the xml
file as follows:
<xml>
<fields>
<field>
<name>A</name>
</field>
<merge label="D">
<field>
<name>B</name>
</field>
<field>
<name>C</name>
</field>
</merge>
</fields>
</xml>
Should generate a table header like this:
/========================\ \
| | D | |
| A |------------| |- table header
| | B | C | |
|========================| /
| ..... | .. | ... |
\========================/
Any ideas in how to do this using Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的事情将让您从简单的情况开始(没有“合并”标签)。
Something like this will get you started with the simple case (without the 'merge' tag).
我将使用 XSLT 文件并将其与 Xalan、撒克逊 或 Jaxp
I'd use an XSLT file and apply it with Xalan, Saxon or Jaxp