Java 的缓存路径
是否有任何方法可以返回可从任何 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可能还想查看标题为 java.io.tmpdir 的博客文章不一致,因为上述方法在 Windows 和 Solaris 上添加了尾部斜杠,但在 Linux 和 OSX 上却没有这样做。
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.
如果您只需要一个临时文件,您可以使用
该文件将在依赖于操作系统的位置创建。当您的应用程序退出时,它将自动删除。
If you just need a temporary file you can use
This file will be created in a OS-dependent location. It will be deleted automatically when your application exits.
除了使用 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.
如果您正在编写一个小程序(在网络浏览器中运行),安全管理器将阻止您写入文件,除非您对该小程序进行了签名。
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.