gpt4 book ai didi

java - 我怎样才能在java中转换这个xml文档?

转载 作者:行者123 更新时间:2023-12-02 02:36:14 24 4
gpt4 key购买 nike

我需要将此文件转换为java。我将该文件视为文档,需要通过更改命名空间来编辑它。

  <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://www.oorsprong.org/websamples.countryinfo">
<soapenv:Header/>
<soapenv:Body>
<web:CapitalCity>
<web:sCountryISOCode>...</web:sCountryISOCode>
</web:CapitalCity>
</soapenv:Body>
</soapenv:Envelope>`

至:

 <Envelope>
<Header/>
<Body>
<CapitalCity>
<sCountryISOCode>...</sCountryISOCode>
</CapitalCity>
</Body>
</Envelope>

我该怎么办?

我的代码:

String xml="<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:web=\"http://www.oorsprong.org/websamples.countryinfo\">\r\n" + 
" <soapenv:Header/>\r\n" +
" <soapenv:Body>\r\n" +
" <web:CapitalCity>\r\n" +
" <web:sCountryISOCode>...</web:sCountryISOCode>\r\n" +
" </web:CapitalCity>\r\n" +
" </soapenv:Body>\r\n" +
" </soapenv:Envelope>";
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
Document doc = dbf.newDocumentBuilder().parse(new InputSource(new StringReader(xml)));
StringWriter buf = new StringWriter();
Transformer xform = TransformerFactory.newInstance().newTransformer();
xform.transform(new DOMSource(doc), new StreamResult(buf));
String output = buf.getBuffer().toString().replaceAll("<[^/](.+?):", "<");
String output2=output.replaceAll("</(.+?):", "</");
System.out.println(output2);

我想在不使用正则表达式的情况下执行此操作,这可能吗?

最佳答案

应用 XSLT 转换

<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/XSL/Transform">
<xsl:template match="*">
<xsl:element name="{local-name()}">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
</xsl:transform>

这只需要 XSLT 1.0,因此您可以使用 JDK 附带的内置 XSLT 转换器来完成。

实际上,由于您似乎不喜欢命名空间前缀,因此可以简化为:

<transform version="1.0" xmlns="http://www.w3.org/XSL/Transform">
<template match="*">
<element name="{local-name()}">
<apply-templates/>
</element>
</template>
</transform>

关于java - 我怎样才能在java中转换这个xml文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57200671/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com