浏览器上通常安装哪些 Java 版本,假设 1.4 安全吗?
有没有关于大多数人在 WWW 上使用的 Java 版本的网站/分析? 看来此数据在网络服务器日志上不可用(相对于 Flash 版本)
我们是否可以安全地将 Java 1.4.2 设置为我们小程序的最低要求,或者仍然有许多用户使用 Java 1.1(MS 1)或 Java 1.2-1.3 ?
如果 Java 太旧,更新它仍然是一个有点复杂的过程,例如 Windows 机器上需要管理员权限,并且在某些 Linux 发行版中也有点困难。
Is there any site/analysis about what Java version most people are using on WWW ? It seems this data is not available on webserver logs (vs. Flash versions)
Can we safely set e.g. Java 1.4.2 as minimum requirement for our applet, or are there still many users using Java 1.1 (MS one) or Java 1.2-1.3 ?
It's still a bit of a complicated process to update Java if it's too old, e.g. admin rights are needed on Windows machine and it's bit difficult in some Linux distros too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
此图表可能会有所帮助。
过去 30 天内 47 个站点的 1,471,010 个浏览器...
http://weblogs.java.net/blog/editors/archives/2009/03/bedbugs_and_bal.html 是一篇讨论该图表的文章。
This chart might help.
From 1,471,010 browsers across 47 sites in the past 30 days...
http://weblogs.java.net/blog/editors/archives/2009/03/bedbugs_and_bal.html is an article that talks about the chart.
您可以修改 Google Analytics 代码来检测 Java 版本,请参阅 这个脚本。
关于 1.4 之前的 Java 版本,可用数据很少,我在 2 月中旬进行了自己的测试,对近 20,000 位拥有 Java 的访问者进行了抽样:
根据这些数据,我最终将要求从 1.1 提高到 1.4,仅允许 Swing 发布十年后被释放了!
You can modify Google analytics code to detect Java version, see this script.
Regarding Java versions prior to 1.4 there is little available data, I ran my own test in mid February, sampling almost 20,000 visitors who had Java:
Following from this data I finally upped the requirements from 1.1 to 1.4, allowing Swing only a decade after it was released!
你可以考虑java web start。 这允许您使用您想要的任何最新版本。 它甚至允许您使用比浏览器默认版本更旧的版本。 例如,如果您的程序仅适用于 Java 5,但安装了 Java 6。
You could consider java web start. This allows you to use any recent version you wish. It even allow you to use a version which is older than the default version for a browser. e.g. if you have a program which only works with Java 5 but Java 6 is installed.