1

我有两个java类....

public class Item {
    private int itemIndex;
    private String containerType;
    private Map<String, List<String>> contentType;
    private String status;
    private List<String> remark; 
    // their getters and setters
}

请告诉我如何将 Item 对象转换为 xml 并将 xml 转换为 Item 对象?我已经使用 XStream jar 进行转换。我需要在 xml 中存储多个项目(项目列表)。请在 JAVA 中提供完整的编码以添加带有现有项目的新项目(存储在 xml 中)。

4

1 回答 1

2

示例代码

ObjectOutputStream out = xstream.createObjectOutputStream(someWriter);

out.writeObject(new Person("Joe", "Walnes"));
out.writeObject(new Person("Someone", "Else"));
out.writeObject("hello");
out.writeInt(12345);

out.close();
于 2010-10-08T06:44:32.980 回答