在各种平台上创建文件的通用位置(非用户特定)
我编写跨平台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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道有这样一个跨平台文件夹,所有用户都可以读取。但是您可以:
commons-lang
可以帮助您确定平台(请参阅SystemUtils)使用中央配置(其中为此安装定义数据交换文件夹)也可能是一种选择,但这取决于项目的打包。
I'm not aware of such such a cross-platform folder which is additionally readable by all users. But you can:
commons-lang
may help you determining the platform (see SystemUtils)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.