我对XML序列化和处理完全陌生。 我正在研究一个项目,我需要阅读一系列XML文件并将其反序列化为对象。因为我以前从未处理过XML文件,所以我尝试在stackoverflow上阅读这里,然后我想出了一些代码。其中一些有效,一些没有,我无法理解为什么。
我的XML文件看起来像这样(有更多动作,但你明白了):
<MovementCards>
<MovementCard>
<movements>
<int>3</int>
<int>3</int>
<int>2</int>
<int>2</int>
<int>2</int>
<int>2</int>
</movements>
</MovementCard>
</MovementCards>
这些是我的课程:
@XmlRootElement(name="MovementCards")
public class MovementCards {
private List<MovementCard> movementCards;
@XmlElement(name="MovementCard")
public List<MovementCard> getMovementCards() {
return this.movementCards;
}
public void setMovementCards(List<MovementCard> movementCards) {
this.movementCards = movementCards;
}
}
public class MovementCard extends Card {
@XmlElement(name="movements")
private int[] movements = new int[FamilyGameManager.NUMBER_OF_TRACKS];
public int[] getMovements() {
return movements.clone();
}
public void setMovements(int[] movements) {
this.movements = movements;
}
}
最后这是我写的功能:
public List<MovementCard> generateMovementCards() {
List<MovementCard> list = new ArrayList<MovementCard>();
try {
File file = new File(MovementCardsFile);
JAXBContext jaxbContext = JAXBContext.newInstance(MovementCards.class);
Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();
MovementCards movementCards = (MovementCards) jaxbUnmarshaller.unmarshal(file);
list = movementCards.getMovementCards();
}
catch (JAXBException e) {
e.printStackTrace();
}
return list;
}
提前致谢。
答案 0 :(得分:0)
您可以执行以下操作:
@XmlElementWrapper(name="movements")
@XmlElement(name="int")
了解更多信息