博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何比较两个xml 的异同
阅读量:5227 次
发布时间:2019-06-14

本文共 1531 字,大约阅读时间需要 5 分钟。

http://www.xmlunit.org/

    
org.xmlunit
    
xmlunit-core
    
2.3.0

 

123
liming
control.xml
1234
liming
test.xml

 

import static org.junit.Assert.assertFalse;import java.io.File;import javax.xml.transform.Source;import org.junit.Test;import org.xmlunit.builder.DiffBuilder;import org.xmlunit.builder.Input;import org.xmlunit.diff.Diff;import org.xmlunit.diff.Difference;public class Xmltest {    @Test    public void ff() {        File control = new File("E://control.xml");        File test = new File("E://test.xml");                Source sourceControl = Input.fromFile(control).build();        Source sourceTest = Input.fromFile(test).build();                Diff build = DiffBuilder.compare(sourceControl).withTest(sourceTest).ignoreComments().ignoreWhitespace().build();                boolean hasDifferences = build.hasDifferences();        if (hasDifferences) {            Iterable
differences = build.getDifferences(); for (Difference difference : differences) { System.out.println(difference); } } assertFalse(hasDifferences); }}

运行结果:

Expected text value '123' but was '1234' - comparing 
123
at /root[1]/id[1]/text()[1] to
1234
at /root[1]/id[1]/text()[1] (DIFFERENT)

 

转载于:https://www.cnblogs.com/zno2/p/7120369.html

你可能感兴趣的文章
张季跃 201771010139《面向对象程序设计(java)》第四周学习总结
查看>>
如何解除循环引用
查看>>
android中fragment的使用及与activity之间的通信
查看>>
字典【Tire 模板】
查看>>
jquery的contains方法
查看>>
python3--算法基础:二分查找/折半查找
查看>>
Perl IO:随机读写文件
查看>>
Perl IO:IO重定向
查看>>
转:基于用户投票的排名算法系列
查看>>
WSDL 详解
查看>>
[转]ASP数组全集,多维数组和一维数组
查看>>
C# winform DataGridView 常见属性
查看>>
逻辑运算和while循环.
查看>>
Nhiberate (一)
查看>>
c#后台计算2个日期之间的天数差
查看>>
安卓开发中遇到的小问题
查看>>
ARTS打卡第3周
查看>>
linux后台运行和关闭SSH运行,查看后台任务
查看>>
cookies相关概念
查看>>
CAN总线波形中ACK位电平为什么会偏高?
查看>>