如何删除encoding=“UTF-8”独立=“否”来自 Java 中的 xml Document 对象

发布于 2024-12-05 21:55:22 字数 500 浏览 0 评论 0原文

我想用 Java 创建 XML。

     DocumentBuilderFactory dbfac = DocumentBuilderFactory.newInstance();
     DocumentBuilder docBuilder;
     docBuilder = dbfac.newDocumentBuilder();
     Document doc = docBuilder.newDocument();

但Java会自动创建这样的声明

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

How can I remove encoding="UTF-8"standalone="no" 所以它会

<?xml version="1.0"?>

谢谢!

I want to create XML in Java.

     DocumentBuilderFactory dbfac = DocumentBuilderFactory.newInstance();
     DocumentBuilder docBuilder;
     docBuilder = dbfac.newDocumentBuilder();
     Document doc = docBuilder.newDocument();

but Java automatically creates declaration like this

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

How can I remove encoding="UTF-8" standalone="no" so it will be

<?xml version="1.0"?>

Thanks!

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

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

发布评论

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

评论(3

深爱成瘾 2024-12-12 21:55:22

为什么需要删除编码?但是..

doc.setXmlStandalone(true);

会删除standalone="no"

Why do you need to remove an encoding? But..

doc.setXmlStandalone(true);

will erase standalone="no"

扎心 2024-12-12 21:55:22
transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");

这将解决您的问题,已在 JDK 6 中验证

transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");

This would resolve your issue, verified at JDK 6

断桥再见 2024-12-12 21:55:22

我认为没有合法的方法可以将这些属性排除在生成之外。
但生成后,您可以使用 XSLT 删除它。

我认为这是一个好办法。

I think there is no legal way to exclude theese attributes from generation.
But after it's generated you can use XSLT to remove this.

I think this is a good way.

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