1

我正在使用 Jaxb,Unmarshalling an x​​ml。我正在使用 java 1.6。这是通过 JWSDP 2.0 生成的类。(xjc.bat) 但我的问题是我无法编译生成的类。我收到如下所示的语法错误。

“类型不匹配:无法从 XmlAccessType 转换为 AccessType”

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


@XmlAccessorType(XmlAccessType.FIELD)// here i am getting sytax error
@XmlType(name = "personinfo", propOrder = {
    "firstname",
    "lastname",
    "address"
})
public class Personinfo {

    @XmlElement(required = true)
    protected String firstname;
    @XmlElement(required = true)
    protected String lastname;
    @XmlElement(name = "Address", required = true)
    protected PersonAddress address;
............................

任何人都可以在这方面提供帮助,

4

1 回答 1

4

我使用下面的演示代码尝试了Personinfo您问题中的课程,并且一切正常。由于您使用的是 Java SE 6(其中包括 JAXB 实现),因此您需要确保您的类路径中没有来自 JWSDP 2.0 的任何 JAXB API。

我还建议使用 Java SE 6 中的 XJC 实用程序而不是 JWSDP,因为 JWSDP 已经很老了:

演示

package forum10514244;

import java.io.File;
import javax.xml.bind.*;
import javax.xml.transform.stream.StreamSource;

public class Demo {

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

        File xml = new File("src/forum10514244/input.xml");
        Unmarshaller unmarshaller = jc.createUnmarshaller();
        JAXBElement<Personinfo> je = unmarshaller.unmarshal(new StreamSource(xml), Personinfo.class);

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

}

输入.xml/输出

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
    <firstname>Jane</firstname>
    <lastname>Doe</lastname>
    <Address/>
</root>
于 2012-05-09T10:54:26.063 回答