JavaFX如何缓存http下载?
通过 http:// 下载文件时,JavaFX 小程序是否使用浏览器的缓存或任何缓存? 我知道它会缓存定义应用程序的 .jar 文件。 我想编写一个音频播放器来缓存它下载的媒体。
Does a JavaFX applet use the browser's cache or any cache when downloading files over http://? I know it will cache the .jar files that define the application. I want to write an audio player that caches the media it downloads.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
AFAIK JavaFX 运行时将缓存用于小程序的 JAR。 但它不会使用浏览器缓存。
AFAIK the JavaFX runtime will cache the JARs used for the applet. It will not use the browser cache, though.
最新版本的Java插件(jdk1.6.0u10+)实际上使用JavaWebStart,因此实际的JVM根本不在浏览器的空间内。 所有文件都根据 JavaWebStart 配置缓存在自己的区域中。
The latest version of the Java plugin (jdk1.6.0u10+) actually uses JavaWebStart, so the actuall JVM is not within the Browser's space at all. All files are cached in their own area based on JavaWebStart configuration.