在javafx

时间:2015-09-23 09:52:04

标签: java javafx javafx-8

如何在此对话框中找到单击的按钮,并获得选项。

如果点击Debug我需要输出,Ok获取选择bok选择值以及单击哪个按钮。我已经引用了enter link description here并在

中更改了我的代码
    Optional<ButtonType> optional = choice.showAndWait();
    if (optional.isPresent()) { 
        System.out.println(optional.get().getButtonData());

    } 

我会收到此错误

Exception in thread "JavaFX Application Thread" java.lang.ClassCastException: java.lang.String cannot be cast to javafx.scene.control.ButtonType
at choicedialogfx.ChoiceDialogFX.choiceInputDialog(ChoiceDialogFX.java:74)
at choicedialogfx.ChoiceDialogFX$1.handle(ChoiceDialogFX.java:43)
at choicedialogfx.ChoiceDialogFX$1.handle(ChoiceDialogFX.java:39)
at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:86)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:238)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:191)

这是我的示例代码

    public class ChoiceDialogFX extends Application {

    @Override
    public void start(Stage primaryStage) {
    List<String> list = new ArrayList<>();
    list.add("/dev/ttyUSB0");
    list.add("/dev/ttyS0");
    list.add("/dev/ttyS1");
    list.add("/dev/ttyS2");

    Button btn = new Button();
    btn.setText("ChoiceDialog");
    btn.setOnAction(new EventHandler<ActionEvent>() {

        @Override
        public void handle(ActionEvent event) {
            choiceInputDialog("Test", "Port Select", "Choice", list);
        }
    });

    StackPane root = new StackPane();
    root.getChildren().add(btn);

    Scene scene = new Scene(root, 300, 250);

    primaryStage.setTitle("Hello World!");
    primaryStage.setScene(scene);
    primaryStage.show();
    }

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

    public String choiceInputDialog(String title, String headerText, String contentText, List choices) {
    Object defaultChoice = choices.get(0);
    Collection<String> collection = choices;
    ChoiceDialog choice = new ChoiceDialog(defaultChoice, collection);
    addCheckBox(choice);
    choice.setTitle(title);
    choice.setHeaderText(headerText);
    choice.setContentText(contentText);
    Optional<ButtonType> optional = choice.showAndWait();
    if (optional.isPresent()) {
        System.out.println(optional.get());

    } 
    return null;
    }

    private void addCheckBox(ChoiceDialog choice) {
    ButtonType buttonType = new ButtonType("Debug", ButtonData.HELP);
    choice.getDialogPane().getButtonTypes().add(buttonType);
    }
}

enter image description here

1 个答案:

答案 0 :(得分:3)

如果您为ChoiceDialog指定了确切类型,则编码时遇到的问题会更少。而不仅仅是

ChoiceDialog choice = new ChoiceDialog( defaultChoice, collection );

DO

ChoiceDialog<String> choice = new ChoiceDialog( defaultChoice, collection );

我们在此处将T类型设置为String,其中T

  

T - 要向用户显示的项目类型以及类型   

。当对话框被解除时,通过ChoiceDialog.getResult()返回。

换句话说,我们希望向用户显示字符串选项,并在用户点击其中一个按钮时返回一个字符串。请注意,对于&#34;取消&#34;。

,它将为null

下一步。您想从对话框返回2个值,
1.用户从组合框中选择的值
2.用户点击的按钮类型

由于我们只返回一个字符串值,因此天真的解决方案是返回上面的合并值2,并将它们拆分为客户端代码。更强大的解决方案是将类型安全对象设置为上面的Type of ChoiceDialog,或者自己设置Dialog的自定义内容(参见Custom Login Dialog example)。

天真的解决方案:

public String choiceInputDialog( String title, String headerText, String contentText, List choices )
{
    ChoiceDialog<String> choice = new ChoiceDialog( choices.get( 0 ), choices );
    addCheckBox( choice );

    choice.setResultConverter( ( ButtonType type ) ->
    {
        ButtonBar.ButtonData data = type == null ? null : type.getButtonData();
        if ( data == ButtonBar.ButtonData.HELP )
        {
            return "DEBUG@" + choice.getSelectedItem();
        }
        else if ( data == ButtonBar.ButtonData.OK_DONE )
        {
            return "OK@" + choice.getSelectedItem();
        }
        else
        {
            return null;
        }
    } );

    choice.setTitle( title );
    choice.setHeaderText( headerText );
    choice.setContentText( contentText );
    Optional<String> result = choice.showAndWait();
    if ( result.isPresent() )
    {
        System.out.println( "result: " + Arrays.toString( result.get().split( "@" ) ) );
    }
    return null;
}

修改

实际上,您可以通过

获取所选项目
choice.getSelectedItem();

因此您可能希望仅返回单击按钮的文本。像

这样的东西
Optional<String> result = choice.showAndWait();
if ( result.isPresent() )
{
    System.out.println( "button text = " + result.get() );
    System.out.println( "choice = " + choice.getSelectedItem());
} 

其中

choice.setResultConverter( ( ButtonType type ) ->
{
    ButtonBar.ButtonData data = type == null ? null : type.getButtonData();
    if ( data == ButtonBar.ButtonData.HELP )
    {
        return "DEBUG";
    }
    else if ( data == ButtonBar.ButtonData.OK_DONE )
    {
        return "OK";
    }
    else
    {
        return null;
    }
} );