JAXB unMarshaller出错?

时间:2015-11-19 14:19:25

标签: java jaxb

从我的.xml文件中读取时,我得到以下内容。这是错误

javax.xml.bind.UnmarshalException: unexpected element (uri:"http://www.dJohn.com/teacher", local:"teacher"). Expected elements are (none)

这是我的file.xml

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Teacher xmlns="http://www.dJohn.com/teacher" Id="0001" />       

主要班级

import java.io.File;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;

public class convertorDemo {
    public static void main(String[] args) {

     try {

        File file = new File("C:\\file.xml");
        JAXBContext jaxbContext = JAXBContext.newInstance(Teacher.class);

        Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();
        Teacher mrS= (Teacher ) jaxbUnmarshaller.unmarshal(file);


      } catch (JAXBException e) {
        e.printStackTrace();
      }
     }

}

这里是Teacher.java ..还有其他一些细节

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



@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Teacher", propOrder = {       
})
public class Teacher{

   @XmlAttribute(name = "Id")
    protected String Id;


    public String getId() {
        return Id;
    }


    public void setId(String value) {
        this.Id = value;
    }  

}

我不知道我的问题是什么,我是JAXB.please帮助的新手!

1 个答案:

答案 0 :(得分:1)

使用Tana为您的XmlRootElement课程添加注释。

相关问题