java中更好的命令行xsd生成器工具是什么
java 中最好的命令行 xsd 生成器工具是什么。我想在线阅读一些 xhtml 页面并以编程方式生成 xsd,以便我可以使用 jaxb 来解组 xhtml 文档。
可用工具的比较,包括 xmlBeans、xml2xsd、oxygenxml、stylus studio、Trang 等。
提前非常感谢
What is the best command line xsd generator tool in java. I want to read some xhtml page online and generate xsd programmatically so that I can use jaxb to unmarshal the xhtml document .
Comparions of the available tools including xmlBeans, xml2xsd,oxygenxml, stylus studio , Trang etc.
Thanks a lot in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么要生成它? XHTML 定义明确。在此使用此 XSD:
http://www.w3.org/2002/ 08/xhtml/xhtml1-strict.xsd
从此 XSD 中,您可以使用 XJC 生成带 JAXB 注释的 POJO。可以在此处找到一些文档:
http://docs。 oracle.com/javase/6/docs/technotes/tools/share/xjc.html
我认为没有必要讨论“最佳”工具,因为 XJC 是此类工具的 Java 参考实现一个工具
Why generate it? XHTML is well-defined. Use this XSD here:
http://www.w3.org/2002/08/xhtml/xhtml1-strict.xsd
From this XSD, you can generate JAXB-annotated POJO's using XJC. Some documentation can be found here:
http://docs.oracle.com/javase/6/docs/technotes/tools/share/xjc.html
I don't think there's any need for a discussion about a "best" tool, as XJC is a Java reference implementation for such a tool