如果我正确阅读了 JavaFX 部署指南,我应该能够部署一个未签名的应用程序,只要“该应用程序需要 [no] 提升权限......”。我已将我的应用程序简化为以下代码:
package fxadhoc;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.Pane;
import javafx.stage.Stage;
public class FXAdHoc
extends Application
{
/**
* @param args the command line arguments
*/
public static void main(String[] args)
{
System.out.println( "launch" );
launch( args );
}
@Override
public void start(Stage stage) throws Exception
{
Pane root = new Pane();
root.getChildren().add( new Label( "Testing" ) );
Scene scene = new Scene( root );
stage.setScene( scene );
stage.show();
}
}
当我双击 jar 文件(由 NetBeans 创建)时,没有任何反应。当我尝试通过 html 或 jnlp 文件(也由 NetBeans 创建)启动时,出现安全异常:
Caused by: java.security.AccessControlException: access denied ("java.util.PropertyPermission" "javafx.debug" "read")
下面提供了完整的堆栈跟踪。
我正在运行应用了所有最新更新的 Windows 7。我已经下载了最新版本的 NetBeans (7.1.1),它配备了最新版本的 JavaFX。我已经下载了 JavaFX 示例,它们运行良好。(如果您好奇,我尝试对应用程序进行自签名并得到异常“ava.lang.RuntimeException: java.lang.UnsatisfiedLinkError: Can't load library: C:\Users\jack\Documents\NetBeansProjects\FXAdHoc \dist\bin\mat.dll")。当我在 Linux 上构建时(再次使用 NetBeans 7.1.1),我得到了同样的例外。
谁能告诉我我错过了什么?谢谢...
异常的完整堆栈跟踪:
java.lang.RuntimeException: Application launch error
at com.sun.javafx.application.LauncherImpl$1.run(LauncherImpl.java:104)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.ExceptionInInitializerError
at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:140)
at com.sun.javafx.application.LauncherImpl.access$000(LauncherImpl.java:27)
at com.sun.javafx.application.LauncherImpl$1.run(LauncherImpl.java:97)
... 1 more
Caused by: java.security.AccessControlException: access denied ("java.util.PropertyPermission" "javafx.debug" "read")
at java.security.AccessControlContext.checkPermission(Unknown Source)
at java.security.AccessController.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
at java.lang.System.getProperty(Unknown Source)
at com.sun.javafx.runtime.SystemProperties.getProperty(SystemProperties.java:178)
at com.sun.javafx.runtime.SystemProperties$1.run(SystemProperties.java:67)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.runtime.SystemProperties.<clinit>(SystemProperties.java:62)
... 4 more