XSL 转换后从 Servlet 生成 XHTML
我编写了一个 servlet,它采用一些 xml 和 xsl 并使用 ITextRenderer 生成 PDF,并将其显示在屏幕上。
然而,我现在想做的是在网页上显示转换后的 XHTML。我创建了一个新的 servlet,它可以正常获取 xml 和 xsl,但我不确定如何获取生成的 XHTML 字符串。
我在网上查看并尝试使用 javax.xml.transform.Transformer 创建 DOMResult 对象,但我不知道如何从该对象中提取 html(假设它根本就在那里)。
有人可以在这方面为我提供一些帮助吗?
预先感谢,
-geroid
I've written a servlet that takes some xml and xsl and produces a PDF, using ITextRenderer, and displays it on the screen.
However, what I wish to do now is to display the resulting XHTML from the transformation on a webpage. I've created a new servlet which gets the xml and xsl as normal, but I'm unsure how to get the resultant XHTML string.
I've had a look online and tried using the javax.xml.transform.Transformer to create a DOMResult object, but I don't know how to pull out the html from this object (presuming it's there at all).
Can anyone provide me with a little help on this please?
Thanks in advance,
-gearoid
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您正在寻找的是 Xalan
Maybe what you are looking for is Xalan