gpt4 book ai didi

xml - 没有属性的 JAXB 元素

转载 作者:数据小太阳 更新时间:2023-10-29 02:40:56 32 4
gpt4 key购买 nike

我正在使用 JAXB,需要生成这样的 XML 代码:

<?xml version="1.0" encoding="UTF-8" standalone="no"?><!--Created with JFLAP 6.4.-->
<structure>
<type>fa</type>
<automaton>
<!--The list of states.-->
<state id="0" name="q0">
<x>160.0</x>
<y>151.0</y
<initial/> <!-- This what I want-->
</state>
<state id="1" name="q1">
<x>369.0</x>
<y>94.0</y>
<final/> <!-- This what I want-->
</state>
<!--The list of transitions.-->
<transition>
<from>0</from>
<to>1</to>
<read>a</read>
</transition>
</automaton>
</structure>

如您所见,我想知道如何创建不带@XmlAttribute 的简单@XmlElement,但在我的代码中,我得到了:

private boolean initial = false;
private boolean final = false;

@XmlElement(name="initial")
public void setInitial(boolean val) {
this.initial = val;
}

@XmlElement(name="final")
public void setFinal(boolean val) {
this.final = val;
}

这样,我得到了这样的 XML:

<state id="0" name="q0">
<x>0.0</x>
<y>0.0</y>
<final>false</final>
<initial>true</initial>
</state>
<state id="1" name="q1">
<x>0.0</x>
<y>0.0</y>
<final>true</final>
<initial>false</initial>
</state>

有人知道怎么做吗?

最佳答案

您可以执行以下操作并利用 XmlAdapterBoolean 转换为空对象以获得所需的 XML 表示形式。

Java 模型

该属性是boolean,但我们会将字段设置为Boolean,以便我们可以对其应用XmlAdapter。我们还将指定我们希望 JAXB 映射到该字段(请参阅:http://blog.bdoughan.com/2011/06/using-jaxbs-xmlaccessortype-to.html)。

import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;

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

@XmlJavaTypeAdapter(BooleanAdapter.class)
private Boolean foo = false;

@XmlJavaTypeAdapter(BooleanAdapter.class)
private Boolean bar = false;

public boolean isFoo() {
return foo;
}

public void setFoo(boolean foo) {
this.foo = foo;
}

public boolean isBar() {
return bar;
}

public void setBar(boolean bar) {
this.bar = bar;
}

}

bool 适配器

import javax.xml.bind.annotation.adapters.XmlAdapter;

public class BooleanAdapter extends XmlAdapter<BooleanAdapter.AdaptedBoolean, Boolean> {

public static class AdaptedBoolean {
}

@Override
public Boolean unmarshal(AdaptedBoolean v) throws Exception {
return null != v;
}

@Override
public AdaptedBoolean marshal(Boolean v) throws Exception {
if(v) {
return new AdaptedBoolean();
} else {
return null;
}
}

}

演示代码

下面是一些演示代码,您可以运行它来查看一切是否正常。

演示

import javax.xml.bind.*;

public class Demo {

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

Root foo = new Root();
foo.setFoo(true);
foo.setBar(false);

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

}

输出

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<foo/>
</root>

关于xml - 没有属性的 JAXB 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20334460/

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