有没有办法在不支持的浏览器上使用 Java Web Start?

Is there a way to use Java Web Start with browsers that don't support?

有没有办法在不支持 Java 的浏览器上使用 Java Web Start? 我知道 JNLP 文件可以在本地 运行 只要它正确引用 jar,但是我必须让我的用户首先获取 JNLP 文件。

HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
  <head>
    <title>Dynamic Tree Java Web Start Application </title>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  </head>
  <body>         
    <script src="https://www.java.com/js/deployJava.js"></script>   
    <h2>Java Web Start application deployed by using the <code>createWebStartLaunchButtonEx</code> function</h2>    
    <script>        
        var jnlpFile = "dynamictree_webstart.jnlp";
        deployJava.createWebStartLaunchButtonEx(jnlpFile);
    </script>
    <noscript>JavaScript is required for this page.</noscript>    
  </body>
</html>

JNLP

<jnlp spec="1.0+" 
    href="dynamictree_webstart.jnlp">
    <information>
        <title>Dynamic Tree Demo</title>
        <vendor>Dynamic Team</vendor>
    </information>
      <security>
          <all-permissions/>
      </security>
    <update check="background"/>
    <resources>
        <!-- Application Resources -->
        <j2se version="1.7+" href="http://java.sun.com/products/autodl/j2se"/>
        <jar href="DynamicTreeDemo.jar" main="true" />
    </resources>
    <application-desc
         main-class="webstartComponentArch.DynamicTreeApplication">
    </application-desc>
</jnlp>

Is there a way to use Java Web Start with browsers that don't support Java?

当然可以。 "don't support Java" 被浏览器阻止的唯一部署类型是 嵌入式 小程序。在使用 JWS 的浏览器上从 link 自由浮动地启动小程序(或框架),浏览器将不会对启动有任何(或)控制权。

deployJava.createWebStartLaunchButtonEx(jnlpFile);

此脚本将在任何不支持 Java 插件的浏览器中中断,因为它使用浏览器插件来检查 Java 版本。