Я недавно изучаю JAXB, необходимо вывести содержимое тегов Code И Text с помощью анмаршалинга. У меня не получается, т.к. при выводе одни нули
<?xml version="1.0" encoding="windows-1251"?>
<product>
<preply>
<err>
<ctErr>
<Code>004</Code>
<Text>Error</Text>
</ctErr>
</err>
</preply>
</product>
Вот мой класс Product:
@XmlRootElement
public class Product {
private int Code;
private String Text;
public int getCode() {
return Code;
}
@XmlElement(name="Code")
public void setCode(int code) {
Code = code;
}
public String getText() {
return Text;
}
@XmlElement(name = "Text")
public void setText(String text) {
Text = text;
}
И код вызывающего класса:
public class Main {
public static void main(String[] args) throws JAXBException {
try{
File file = new File("error.xml");
JAXBContext context = JAXBContext.newInstance(Product.class);
Unmarshaller unmarshaller = context.createUnmarshaller();
Product error = (Product) unmarshaller.unmarshal(file);
System.out.println(error.getCode());
System.out.println(error.getText());
} catch (JAXBException e) {
e.printStackTrace();
}
}
}