<small id='ALBpy'></small><noframes id='ALBpy'>

    <i id='ALBpy'><tr id='ALBpy'><dt id='ALBpy'><q id='ALBpy'><span id='ALBpy'><b id='ALBpy'><form id='ALBpy'><ins id='ALBpy'></ins><ul id='ALBpy'></ul><sub id='ALBpy'></sub></form><legend id='ALBpy'></legend><bdo id='ALBpy'><pre id='ALBpy'><center id='ALBpy'></center></pre></bdo></b><th id='ALBpy'></th></span></q></dt></tr></i><div id='ALBpy'><tfoot id='ALBpy'></tfoot><dl id='ALBpy'><fieldset id='ALBpy'></fieldset></dl></div>
      <bdo id='ALBpy'></bdo><ul id='ALBpy'></ul>
    <legend id='ALBpy'><style id='ALBpy'><dir id='ALBpy'><q id='ALBpy'></q></dir></style></legend>

    <tfoot id='ALBpy'></tfoot>

    1. 在 Java 中使用命名空间创建 XML 文档

      时间:2023-09-30
    2. <legend id='CYaQY'><style id='CYaQY'><dir id='CYaQY'><q id='CYaQY'></q></dir></style></legend>
        <bdo id='CYaQY'></bdo><ul id='CYaQY'></ul>

      • <i id='CYaQY'><tr id='CYaQY'><dt id='CYaQY'><q id='CYaQY'><span id='CYaQY'><b id='CYaQY'><form id='CYaQY'><ins id='CYaQY'></ins><ul id='CYaQY'></ul><sub id='CYaQY'></sub></form><legend id='CYaQY'></legend><bdo id='CYaQY'><pre id='CYaQY'><center id='CYaQY'></center></pre></bdo></b><th id='CYaQY'></th></span></q></dt></tr></i><div id='CYaQY'><tfoot id='CYaQY'></tfoot><dl id='CYaQY'><fieldset id='CYaQY'></fieldset></dl></div>

                <tbody id='CYaQY'></tbody>
            1. <tfoot id='CYaQY'></tfoot>

              <small id='CYaQY'></small><noframes id='CYaQY'>

              • 本文介绍了在 Java 中使用命名空间创建 XML 文档的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我正在寻找可以构建使用名称空间的 XML 文档的示例 Java 代码.我似乎无法使用我的常规最喜欢的工具找到任何东西,所以希望有人能帮助我.p>

                I am looking for example Java code that can construct an XML document that uses namespaces. I cannot seem to find anything using my normal favourite tool so was hoping someone may be able to help me out.

                推荐答案

                我不确定,你想做什么,但我使用 jdom 用于我的大多数 xml 问题,它支持命名空间(当然).

                I am not sure, what you trying to do, but I use jdom for most of my xml-issues and it supports namespaces (of course).

                代码:

                Document doc = new Document();
                Namespace sNS = Namespace.getNamespace("someNS", "someNamespace");
                Element element = new Element("SomeElement", sNS);
                element.setAttribute("someKey", "someValue", Namespace.getNamespace("someONS", "someOtherNamespace"));
                Element element2 = new Element("SomeElement", Namespace.getNamespace("someNS", "someNamespace"));
                element2.setAttribute("someKey", "someValue", sNS);
                element.addContent(element2);
                doc.addContent(element);
                

                生成以下 xml:

                <?xml version="1.0" encoding="UTF-8"?>
                 <someNS:SomeElement xmlns:someNS="someNamespace" xmlns:someONS="someOtherNamespace"  someONS:someKey="someValue">
                  <someNS:SomeElement someNS:someKey="someValue" />
                 </someNS:SomeElement>
                

                其中应该包含您需要的一切.希望对您有所帮助.

                Which should contain everything you need. Hope that helps.

                这篇关于在 Java 中使用命名空间创建 XML 文档的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:使用名称空间和前缀解组 JAXB 下一篇:你真的在java中使用你的反向域来命名包吗?

                相关文章

                最新文章

                1. <i id='AigYq'><tr id='AigYq'><dt id='AigYq'><q id='AigYq'><span id='AigYq'><b id='AigYq'><form id='AigYq'><ins id='AigYq'></ins><ul id='AigYq'></ul><sub id='AigYq'></sub></form><legend id='AigYq'></legend><bdo id='AigYq'><pre id='AigYq'><center id='AigYq'></center></pre></bdo></b><th id='AigYq'></th></span></q></dt></tr></i><div id='AigYq'><tfoot id='AigYq'></tfoot><dl id='AigYq'><fieldset id='AigYq'></fieldset></dl></div>

                    <legend id='AigYq'><style id='AigYq'><dir id='AigYq'><q id='AigYq'></q></dir></style></legend>
                  1. <tfoot id='AigYq'></tfoot>

                      <bdo id='AigYq'></bdo><ul id='AigYq'></ul>

                    <small id='AigYq'></small><noframes id='AigYq'>