JavaFX 使用 SwingNode 嵌入 JFileChooser 并获取选定的文件



我已经使用SwingNode将JFileChooser集成到JavaFX应用程序中。对话框显示并可用,但我不确定如何从中获取所选文件。

感谢您的任何帮助。

@FXML
public void openDialog(MouseEvent event) {
SwingNode swingNode = new SwingNode();
SwingUtilities.invokeLater(() -> {
swingNode.setContent(fileChooser);
});
BorderPane pane = new BorderPane();
pane.setCenter(swingNode);
Stage stage = new Stage();
Scene scene = new Scene(pane, 500, 500);
stage.setScene(scene);
stage.show();
}

出于好奇,我举了一个小例子来做到这一点。

import javafx.application.Application;
import javafx.application.Platform;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
import javafx.embed.swing.SwingNode;
import javax.swing.JFileChooser;
import javax.swing.SwingUtilities;
public class JunkFx extends Application {
public void openDialog(MouseEvent event) {
JFileChooser fileChooser = new JFileChooser("why");
SwingNode swingNode = new SwingNode();
SwingUtilities.invokeLater(() -> {
swingNode.setContent(fileChooser);
});
BorderPane pane = new BorderPane();
pane.setCenter(swingNode);
Stage stage = new Stage();
Scene scene = new Scene(pane, 500, 500);
stage.setScene(scene);
stage.show();
fileChooser.addActionListener(evt->{
System.out.println(evt.getActionCommand());
System.out.println(fileChooser.getSelectedFile());
Platform.runLater(stage::hide);
});
}

@Override
public void start(Stage stage) throws Exception {
Button b = new Button("click");
b.setOnMouseClicked(this::openDialog);
Scene scene = new Scene(new StackPane(b), 640, 480);
stage.setTitle("open a dialog");
stage.setScene(scene);
stage.show();
}
public static void main(String[] args){
launch(args);
}
}

EDT 上会有一个响应,然后您必须管理如何处理它,检查是否已取消或已接受等,然后在平台线程上触发操作。

最新更新