在
Java中制作XML文件的规范形式最简单的方法是什么?你有一些完整的代码吗?我已经在网络上找到了几个链接,如
this,this和
this,但是我无法使其工作:/
谢谢,
伊万
编辑:我使用了那里提出的规范,但是我得到了奇怪的结果.为了更加精简,这种方法不会删除元素之间的空格…这是我得到的:
<Metric xmlns="http://www.ibm.com/wsla" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="total_memory_consumption_metric" type="double" unit="Mbit" xsi:schemaLocation="http://www.ibm.com/wsla WSLA.xsd"> <Source>ServiceProvider</Source> <MeasurementDirective resultType="double" xsi:type="StatusRequest"> <RequestURI> ***unused*** </RequestURI> </MeasurementDirective> </Metric>
解决方法
Canonicalizer课时
Apache XML Security project:
Canonicalizer canon = Canonicalizer.getInstance(Canonicalizer.ALGO_ID_C14N_OMIT_COMMENTS); byte canonXmlBytes[] = canon.canonicalize(yourXmlBytes); String canonXmlString = new String(canonXmlBytes);