2

我是 JavaFX 的初学者。

我已经在 J​​avaFX Scene Builder 中进行了布局。在那我留下了一个 WebView 但我不知道如何给它一个 URL。

在一个单独的课程中,我已经准备好我的 WebView

public class GoogleApp extends Application {

private Scene scene;
MyBrowser myBrowser;

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
  launch(args);
 }

 @Override
  public void start(Stage primaryStage) {
  primaryStage.setTitle("Railway Scenario Development");

  myBrowser = new MyBrowser();
  scene = new Scene(myBrowser, 800, 600);

  primaryStage.setScene(scene);
  primaryStage.show();
}

class MyBrowser extends Region{

  HBox toolbar;

  WebView webView = new WebView();
  WebEngine webEngine = webView.getEngine();

  public MyBrowser(){

      final URL urlGoogleMaps = getClass().getResource("demo.html");
      webEngine.load(urlGoogleMaps.toExternalForm());

      getChildren().add(webView);

  }

 }
 }

但是我需要将它嵌入到我在 Scene Builder 中制作的应用程序中。在 Scene Builder 中有一个 WebView 面板,我希望该面板看起来像我上面提到的代码。

我的应用程序代码使用 fxml 文件作为其“场景”(如下所示)。

public class Railway extends Application {

private Scene scene;


@Override
public void start(Stage stage) throws Exception {
    Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml"));
    stage.setTitle("Railway Scenario Development");

    scene = new Scene(root);

    stage.setScene(scene);
    stage.show();
}


public static void main(String[] args) {
    launch(args);
}

}

我想我必须在 FXMLDocumentController 文件中做一些事情。但是如何和什么。请指导。

4

2 回答 2

1

现在它的工作完美......试试这个

import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.scene.layout.StackPane;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
public class FXMLDocumentController {

@FXML
private ResourceBundle resources;

@FXML
private URL location;

@FXML
private StackPane root;


@FXML
void initialize() {
    assert root != null : "fx:id=\"root\" was not injected: check your FXML file 'FXMLDocument.fxml'.";
WebView view = new WebView();
    WebEngine engine = view.getEngine();
    engine.load("http://www.google.com/");
    root.getChildren().add(view);
}
}
于 2013-11-14T12:40:35.387 回答
0

我找到了通往您的第一个版本的方法。

其他人可以试试这个:http: //java-buddy.blogspot.de/2012/05/embed-webview-in-fxml-to-load.html

它对我有用。

这是一个示例 FXML 文件。

<?xml version="1.0" encoding="UTF-8"?>

<?import java.lang.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafxml_web.*?><!--- Important Use your own Package instead of "javafxml_web.*" --->

<AnchorPane id="AnchorPane" prefHeight="500" prefWidth="660" xmlns:fx="http://javafx.com/fxml" fx:controller="javafxml_web.Sample">
    <children>
        <MyBrowser id="mybrowser" layoutX="10" layoutY="10" prefHeight="460" prefWidth="620" fx:id="mybrowser" />
    </children>
</AnchorPane>

在您的 Controllerclass 中,您必须使用:

@FXML
private MyBrowser mybrowser;

这应该可以解决您的问题。

于 2015-03-26T14:21:30.980 回答