4

YouTube からビデオを再生する WebEngine で新しいステージを作成すると、それを閉じた後、Youtube がバックグラウンドで再生され続けます。「Platform.exit」を使用すると、すべての JavaFX アプリが閉じますが、YouTube 用に作成されたステージのみを閉じたいです。

これはYouTubeプレーヤーの私のクラスです:

public class YouTube_player  {
    public YouTube_player(String url) {
        final Group root = new Group();
        Scene scene = new Scene(root, 820, 480);

        final Stage stage = new Stage();
        final WebView webView = new WebView();
        final WebEngine webEngine = webView.getEngine();
        webEngine.loadContent(url);
        root.getChildren().add(webView);
        stage.centerOnScreen();

        stage.setScene(scene);
        stage.show();
        stage.setOnCloseRequest(new EventHandler<WindowEvent>(){

            @Override
            public void handle(WindowEvent event) {
              //What i should put here to close only this stage.
              //Platform.exit - closes all my stages.
              //webEngine.getLoadWorker().cancel(); - dont stop Youtube )))
            }
        });

    }
}

「メインステージ」のボタンをクリックした後、私のYoutubeプレーヤーステージが作成されています:

b1.setOnAction(new EventHandler<ActionEvent>() {
    @Override public void handle(ActionEvent event) {
        new YouTube_player(url_video_p1);
    }
});
4

2 に答える 2