主要:
@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
primaryStage.setTitle("Hello World");
primaryStage.setScene(new Scene(root, 300, 275));
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
查看:
<code>StackPane fx:controller="sample.Controller" xmlns:fx="http://javafx.com/fxml"><br/>
WebView fx:id="webView" /> </StackPane></code>
控制器:
<br/>
@FXML<br/>
private WebView webView;<br/>
@Override<br/>
public void initialize(URL url, ResourceBundle resourceBundle) {<br/>
}
操作系统:我正在使用 Windows 8.1 x64 Preview(蓝色)
该程序无法启动,Internet Explorer 11 已启用,这个简单的程序在 1 周前运行,会发生什么情况并因这些错误而崩溃?
问题出在第 12 行(此行显示WebView标记)
原因:java.lang.reflect.InvocationTargetException... 原因:java.lang.UnsatisfiedLinkError: C:\Program Files\Java\jdk1.8.0\jre\ bin\jfxwebkit.dll: %1 不是有效的 Win32 应用程序
谢谢指教!