0

您好我正在尝试学习如何使用snakeYAML。

我想保存一个对象,以便在启动应用程序时再次加载它。只是我想在我的图书馆里存放书籍。互联网告诉我yaml是一个很好的方法。

我必须上课:

public class Library {
private HashMap<String, List<Book>> library; 

public Library() {
    library = new HashMap<String, List<Book>>();
}

//getter
public HashMap<String, List<Book>> getHashMap() {
    return library;
}

//setter
public void setHashMap(HashMap<String, List<Book>> library) {
    this.library = library;
}
}

现在我想使用 main 方法对其进行序列化:

public static void main(String[] args) {

    Library library = new Library();
    LinkedList<Book> books = new LinkedList<Book>();

    books.add(new Book("Some title", false));
    books.add(new Book("Other Title", true));

    library.putMany("books", books);

    System.out.println(new Yaml().dump(books));

但我只得到输出:

- !!model.Book {done: false, title: Some title}
- !!model.Book {done: true, title: Other Title}

有些东西告诉我,我错过了图书馆本身之类的东西。

4

1 回答 1

0

那一定是因为您只是dump()在 ing 两个列表books,而不是整个列表Library

于 2013-03-03T22:20:29.053 回答