在各种平台上创建文件的通用位置(非用户特定)

发布于 2024-12-12 00:52:39 字数 360 浏览 0 评论 0原文

我编写跨平台java应用程序,我需要一些可以存储一定数量文件的地方。这些文件将由可能在另一个用户下运行的另一个 java 应用程序使用。这意味着我无法使用:

System.getProperty("user.home");

因为我可能没有读/写这些文件的权限。我需要的是某种方法来获取非用户特定的文件夹,每个应用程序都可以在其中创建/读取/删除文件(例如 Windows 的“C:\ProgramData”)。 是否有跨平台的方法来获取此类文件夹(至少对于 Windows 和 Linux),或者如果没有 - 为 Windows(应该在 XP-7 上工作)、Linux 和 Android 获取此类文件夹的最佳方法是什么。 欢迎任何拼图。

I write cross-platform java app and I need some place where I can store some amount of files. These files will be used by another java application that may run under another user. This mean that I cannot use:

System.getProperty("user.home");

since I may have no permissions to read/write these files. What I need is some way to get non-user-specific folder where every app can create/read/delete files (something like "C:\ProgramData" for windows).
Is there a cross-platform way to get such folder(at least for Windows and Linux), or if there is no any - what is the best way to get such folders for Windows(should work on XP-7), Linux and Android.
Any pieces of puzzle are welcomed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

寂寞清仓 2024-12-19 00:52:39

我不知道有这样一个跨平台文件夹,所有用户都可以读取。但是您可以:

  • 为每个操作系统定义一个特定的文件夹,commons-lang可以帮助您确定平台(请参阅SystemUtils)
  • 在应用程序启动期间检查当前用户是否可以读取/写入该文件夹。

使用中央配置(其中为此安装定义数据交换文件夹)也可能是一种选择,但这取决于项目的打包。

I'm not aware of such such a cross-platform folder which is additionally readable by all users. But you can:

  • Define a specific folder for each OS, commons-lang may help you determining the platform (see SystemUtils)
  • Check if the folder read/writeable for the current user during application start-up.

Using a central configuration (where the data exchange folder is defined for this installation) may also be an option, but this depends on the packaging of your project.

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