Java 的缓存路径

发布于 2024-09-29 14:40:30 字数 79 浏览 2 评论 0原文

是否有任何方法可以返回可从任何 Java applet 应用程序、任何用户、任何操作系统(Windows、Linux 等)访问的路径来保存缓存?

Is there any method that returns some path that is accessible from any Java applet application, from any user, any operating system (Windows, Linux, etc) for saving cache?

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

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

发布评论

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

评论(4

你的呼吸 2024-10-06 14:40:30
System.getProperty("java.io.tmpdir");

您可能还想查看标题为 java.io.tmpdir 的博客文章不一致,因为上述方法在 Windows 和 Solaris 上添加了尾部斜杠,但在 Linux 和 OSX 上却没有这样做。

System.getProperty("java.io.tmpdir");

You also might want to take a look at a blog post titled java.io.tmpdir Inconsitency since the above-mentioned method adds a trailing slash on Windows and Solaris but doesn't do so on Linux and OSX.

私藏温柔 2024-10-06 14:40:30

如果您只需要一个临时文件,您可以使用

File temp = File.createTempFile("filename", ".suffix");

该文件将在依赖于操作系统的位置创建。当您的应用程序退出时,它将自动删除。

If you just need a temporary file you can use

File temp = File.createTempFile("filename", ".suffix");

This file will be created in a OS-dependent location. It will be deleted automatically when your application exits.

忘羡 2024-10-06 14:40:30

除了使用 tempdir 之外,请注意,在 plugin2 架构 JRE (1.6.0_10+) 中启动的小程序可以挂接到 JWS API,从而使用 PersistenceService。这是一个PersistenceService 的小演示

编辑:请注意,PersistenceService 可以在 X-Plat 和沙箱中使用。

Besides using the tempdir, note that applets launched in a plugin2 architecture JRE (1.6.0_10+) can hook into the JWS API, and thereby use the PersistenceService. Here is a small demo of the PersistenceService.

Edit: Note the PersistenceService can be used X-Plat and from a sand-box.

故人如初 2024-10-06 14:40:30

如果您正在编写一个小程序(在网络浏览器中运行),安全管理器将阻止您写入文件,除非您对该小程序进行了签名。

If you're writing an applet (which runs in the web browser), the security manager will prevent you from writing to files unless you the applet is signed.

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