gpt4 book ai didi

java - 设置仅提供 xml 属性/元素名称的对象值

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:10:45 24 4
gpt4 key购买 nike

是否可以仅使用该属性的名称将属性/元素值设置为 JAXB 对象?

例子:

如果我有课

@XmlRootElement(name = "book")
public class Book {

@XmlElement(name = "title")
private String name;
@XmlElement(name = "author")
private String author;

// setters and getters
}

我可以不使用它的setter(setName())而只知道xml元素名称来设置名称吗?在本例中是 "title"。它可能看起来像这样:

JAXBContext context = JAXBContext.newInstance(Book.class);
Something s = context.create***();
s.setValueToObject(book, "title", "New name"); // should do the same like book.setName("New name")

最佳答案

注意:我是 EclipseLink JAXB (MOXy) JAXB (JSR-222) 的领导和成员专家组。

按属性名称设置值

您可以使用 java.lang.reflect API 为您的对象设置一个值。

package forum13952415;

import java.lang.reflect.Field;
import javax.xml.bind.*;

public class ReflectionDemo {

public static void main(String[] args) throws Exception {
Customer customer = new Customer();

setValueToObject(customer, "firstName", "Jane");
setValueToObject(customer, "lastName", "Doe");

JAXBContext jc = JAXBContext.newInstance(Customer.class);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(customer, System.out);
}

private static void setValueToObject(Object object, String property, Object value) throws Exception {
Class clazz = object.getClass();
Field field = clazz.getDeclaredField(property);
field.setAccessible(true);
field.set(object, value);
}

}

通过 XPATH 设置值

MOXy 提供了通过 XPath 在域对象中获取/设置值的能力。下面是一个例子。

演示

在下面的示例中,我们需要深入了解底层 MOXy 实现以访问 setValueByXPath 方法。

package forum13952415;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import org.eclipse.persistence.jaxb.JAXBHelper;
import org.eclipse.persistence.oxm.XMLContext;

public class Demo {

public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Customer.class);

XMLContext xmlContext = JAXBHelper.unwrap(jc, XMLContext.class);

Customer customer = new Customer();
xmlContext.setValueByXPath(customer, "@id", null, 123);
xmlContext.setValueByXPath(customer, "first-name/text()", null, "Jane");
xmlContext.setValueByXPath(customer, "last-name/text()", null, "Doe");

Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(customer, System.out);
}

}

输出

下面是运行演示代码的输出。

<?xml version="1.0" encoding="UTF-8"?>
<customer id="123">
<first-name>Jane</first-name>
<last-name>Doe</last-name>
</customer>

客户

下面是一个示例领域模型。我使用了一个 XML 名称与 Java 名称不同的名称。

package forum13952415;

import javax.xml.bind.annotation.*;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Customer {

@XmlAttribute(name="id")
private int primaryKey;

@XmlElement(name="first-name")
private String firstName;

@XmlElement(name="last-name")
private String lastName;

}

jaxb.properties

要将 MOXy 用作您的 JAXB 提供程序,您需要在与域模型相同的包中添加一个名为 jaxb.properties 的文件,其中包含以下条目(请参阅:http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html):

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory

关于java - 设置仅提供 xml 属性/元素名称的对象值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13952415/

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