当我使用 JAXB 编组 java 对象时,我低于 xml 元素
<error line="12" column="" message="test" />
但我想要如下的xml
<error line="12" message="test" />
如果列值为空,那么我需要获取如上所示的 xml,否则我需要获取元素中的列属性。
有没有办法得到它?
当我使用 JAXB 编组 java 对象时,我低于 xml 元素
<error line="12" column="" message="test" />
但我想要如下的xml
<error line="12" message="test" />
如果列值为空,那么我需要获取如上所示的 xml,否则我需要获取元素中的列属性。
有没有办法得到它?
String
如果相应的字段/属性包含空值,则属性只会用空值编组String
。如果值为 null,则不会编组该属性。
根
package forum13218462;
import javax.xml.bind.annotation.*;
@XmlRootElement
public class Root {
@XmlAttribute
String attributeNull;
@XmlAttribute
String attributeEmpty;
@XmlAttribute(required=true)
String attributeNullRequired;
}
演示
package forum13218462;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Root.class);
Root root = new Root();
root.attributeNull = null;
root.attributeEmpty = "";
root.attributeNullRequired = null;
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(root, System.out);
}
}
输出
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root attributeEmpty=""/>