如何在Java应用程序中实现自动加载

发布于 2024-08-07 00:40:10 字数 140 浏览 5 评论 0原文

因此,我正在编写这个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜雨飘雪 2024-08-14 00:40:10

为什么不使用 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文