如何在Java应用程序中实现自动加载
因此,我正在编写这个 JFrame 应用程序,它有自己的文档模型,可以加载并保存到文件路径。我想知道有什么好方法可以让应用程序在启动时打开上次保存的文件。
我是否以专有方式存储最后保存的文档文件路径,或者java中是否有一些工具可以为我处理这个问题?
So I'm writing this JFrame application that has its own document model that can be loaded and saved to a filepath. I'm wondering what good ways are there to make the application open the last saved file when it starts up.
Do I store last saved document filepath in a proprietary way or is there some facility in java that can handle this for me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用 Java 首选项 API ?
这允许您存储每个用户和/或每个系统的设置/属性。它们将自动保留(通过 Unix/Linux 中的文件,以及 Windows 的注册表中,IIRC)。
Why not use the Java Preferences API ?
That allows you to store settings/properties per user and/or per system. They'll be persisted automatically (via files in Unix/Linux, and in the registry in Windows, IIRC).