gpt4 book ai didi

java - 如何比较jaxb、对象、字符串来查找差异

转载 作者:太空宇宙 更新时间:2023-11-04 12:30:04 26 4
gpt4 key购买 nike

我想知道如何比较两个字符串/对象 (JaxB) 以找出差异。

我的例子的意思是:

我有这个请求:

<zoo>
<zooId>12321</zooId>
<zooName>From Belgium</zooName>
<zooAddress>berlin</zooAddress></zoo>

第二天,我收到此请求(更新):

<zoo>
<zooId>12321</zooId>
<zooName>From Germany</zooName>
<phone>0123456789</phone>
<zooAddress>berlin</zooAddress></zoo>

我想要的差异是:

<zoo>   
<zooName>From Germany</zooName>
<phone>0123456789</phone></zoo>

我谈论了字符串、对象和“Jaxb 对象”,因为我使用 JaxB 请求,我可以将其转换为字符串我有一个与持久层的 hibernate 实体“一对一”的映射。我不想限制选择/想法;-)

提前致谢,

弗朗索瓦

最佳答案

第1步:请创建以下Zoo.java,如下所示:

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class Zoo {
private Long zooID;
private String zooName;
private String phone;
private String zooAddress;

public Long getZooID() {
return zooID;
}

@XmlElement(name = "zooId")
public void setZooID(Long zooID) {
this.zooID = zooID;
}

public String getZooName() {
return zooName;
}

@XmlElement
public void setZooName(String zooName) {
this.zooName = zooName;
}

public String getPhone() {
return phone;
}

@XmlElement
public void setPhone(String phone) {
this.phone = phone;
}

public String getZooAddress() {
return zooAddress;
}

@XmlElement
public void setZooAddress(String zooAddress) {
this.zooAddress = zooAddress;
}

@Override
public String toString() {
return "Zoo [zooID=" + zooID + ", zooName=" + zooName + ", phone=" + phone + ", zooAddress=" + zooAddress + "]";
}

public Zoo getDiff(Zoo that) {

Zoo diff = new Zoo();

if (that.getZooID() == null || (this.getZooID() != null && !this.getZooID().equals(that.getZooID()))) {
diff.setZooID(this.getZooID());
}

if (that.getZooName() == null || (this.getZooName() != null && !this.getZooName().equals(that.getZooName()))) {
diff.setZooName(this.getZooName());
}

if (that.getPhone() == null || (this.getPhone() != null && !this.getPhone().equals(that.getPhone()))) {
diff.setPhone(this.getPhone());
}

if (that.getZooAddress() == null || (this.getZooAddress() != null && !this.getZooAddress().equals(that.getZooAddress()))) {
diff.setZooAddress(this.getZooAddress());
}

return diff;

}

}

第 2 步:请在系统上的任意位置创建以下两个文件。

(a)zoo1.xml

<zoo>
<zooId>12321</zooId>
<zooName>From Belgium</zooName>
<zooAddress>berlin</zooAddress>
</zoo>

(b)zoo2.xml

<zoo>
<zooId>12321</zooId>
<zooName>From Germany</zooName>
<phone>0123456789</phone>
<zooAddress>berlin</zooAddress>
</zoo>

第3步:请创建以下ZooMain.java,如下所示:

import java.io.File;
import java.io.IOException;
import java.io.StringReader;
import java.io.StringWriter;
import java.nio.file.Files;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;

public class ZooMain {

public static void main(String[] args) throws IOException, JAXBException {
String zoo1Str = new String(Files.readAllBytes(new File("D:/zoo1.xml").toPath()));
String zoo2Str = new String(Files.readAllBytes(new File("D:/zoo2.xml").toPath()));

JAXBContext jaxbContext = JAXBContext.newInstance(Zoo.class);

Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();

Zoo zoo1 = (Zoo) jaxbUnmarshaller.unmarshal(new StringReader(zoo1Str));

Zoo zoo2 = (Zoo) jaxbUnmarshaller.unmarshal(new StringReader(zoo2Str));

Zoo diff = zoo2.getDiff(zoo1);

Marshaller jaxbMarshaller = jaxbContext.createMarshaller();

StringWriter sw=new StringWriter();

jaxbMarshaller.marshal(diff, sw);

System.out.println(sw);

}

}

希望这会有所帮助。

关于java - 如何比较jaxb、对象、字符串来查找差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37946880/

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