如何使用 Aegis 将 Java 转换为 XML?

发布于 2024-11-02 08:52:09 字数 48 浏览 0 评论 0原文

如何使用 Aegis 将类转换为 XML?
网上找不到教程,只有随机代码。

How to convert a class into XML with Aegis?
Can´t find tutorials on the web, only random code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧情勿念 2024-11-09 08:52:09

这会将其保存到文件中:

 public void saveToXML(YourDomainObject obj) throws JAXBException, IOException {
                JAXBContext context = JAXBContext.newInstance(obj.getClass());
                Marshaller marshaller = context.createMarshaller();
                marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
                marshaller.marshal(obj, new FileWriter(new File("filename.xml")));

        }

查看 http://download.oracle.com/javase/6/docs/api/javax/xml/bind/Marshaller.html 了解除了将其序列化到文件之外还可以使用什么的更多信息。

This will save it to a file :

 public void saveToXML(YourDomainObject obj) throws JAXBException, IOException {
                JAXBContext context = JAXBContext.newInstance(obj.getClass());
                Marshaller marshaller = context.createMarshaller();
                marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
                marshaller.marshal(obj, new FileWriter(new File("filename.xml")));

        }

Take a look at http://download.oracle.com/javase/6/docs/api/javax/xml/bind/Marshaller.html for more info what you can use beside serializing it to a file.

故人爱我别走 2024-11-09 08:52:09

CXF 发行版中有一些独立于 Web 服务使用 Aegis 的示例。

具体来说,“aegis_standalone”示例就是您想要查看的内容。

There are samples in the CXF distribution of using Aegis independently of web services.

Specifically, the `aegis_standalone' sample is what you want to look at.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文