保存并重新加载 Swing 程序状态
要保存和检索 Swing 程序的状态,可以使用以下几种方法:
Properties API:
Properties API 提供了键值对存储机制。您可以轻松保存和加载数据。但是,仅支持字符串,因此非字符串值需要手动转换。
Properties properties = new Properties(); properties.setProperty("cell_data", board.getCellDataAsString()); properties.store(new FileOutputStream("game.properties"), "Game Properties");
XML 和 JAXB:
JAXB 允许您将对象属性映射到 XML并导出/导入它们。虽然比属性更灵活,但它引入了复杂性。
JAXBContext context = JAXBContext.newInstance(Board.class); Marshaller marshaller = context.createMarshaller(); marshaller.marshal(board, new FileOutputStream("game.xml"));
首选项 API:
首选项 API 支持存储字符串和原始值而不进行转换。它会自动加载和存储内容,但其位置不受您的控制。
Preferences prefs = Preferences.userRoot().node("minesweeper"); prefs.put("cell_data", board.getCellDataAsString());
数据库:
H2 或 HSQLDB 等嵌入式数据库提供基本存储。但是,它们的设置和维护可能比其他选项更复杂,尤其是对于少量数据。
try (Connection connection = DriverManager.getConnection("jdbc:h2:~/minesweeper")) { try (Statement statement = connection.createStatement()) { statement.execute("INSERT INTO cells (data) VALUES ('" + board.getCellDataAsString() + "')"); } }
对象序列化:
考虑使用对象序列化作为最后的手段。它不是为长期存储而设计的,并且存在潜在的问题。
try (ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("game.ser"))) { oos.writeObject(board); }
以上是如何保存和重新加载 Swing 程序的状态?的详细内容。更多信息请关注PHP中文网其他相关文章!