带有对象

时间:2017-10-28 10:47:30

标签: java javafx combobox

我刚开始学习Java Fx。 我有一个装满物体的组合盒。我处理了toString()方法,我可以看到我想要在屏幕上显示的名称。但现在我想让它可编辑,用户将输入自己的文本,ComboBox将创建一个新对象并将该文本放入正确的字段。我知道问题出现在转换器FromString或ToString中,但我无法处理它。

package mnet;

import javafx.application.Application;
import javafx.scene.control.ComboBox;
import javafx.scene.Scene;
import javafx.scene.layout.GridPane;
import javafx.stage.Stage;
import javafx.util.StringConverter;

public class sample extends Application {
    Stage window;

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

    public void start(Stage primaryStage) {

        window = primaryStage;
        window.setTitle("Sample");
        GridPane grid = new GridPane();
        User usr1 = new User("Witold", "ciastko");
        User usr2 = new User("Michał", "styk");
        User usr3 = new User("Maciej", "masloo");
        ComboBox<User> combo1 = new ComboBox<User>();
        combo1.getItems().addAll(usr1, usr2, usr3);
        combo1.setConverter(new StringConverter<User>() {
            @Override
            public String toString(User usr) {
                return usr.getName();
            }

            @Override
            public User fromString(String s) {
                User usr = new User(s, "haslo");
                combo1.getItems().add(usr);
                return usr;
            }
        });
        combo1.setEditable(true);
        combo1.valueProperty().addListener((v, oldValue, newValue) -> {
            System.out.println(newValue);
        });
        GridPane.setConstraints(combo1, 2, 1);
        grid.getChildren().addAll(combo1);
        Scene scene = new Scene(grid, 400, 200);
        window.setScene(scene);
        window.show();

    }
}
package mnet;

public class User {
    String user;
    String password;

    public User() {
        this.user="";
        this.password="";
    }
    public  User(String user, String password){
    this.user=user;
    this.password=password;
    }

    public String getName(){
        return this.user;
    }
}

如果我摆脱StringConverter它可以正常工作,但不是用户名,我只看到像这样的对象的地址“mnet.User@1f3b971”

编辑:添加了适当的工作代码

1 个答案:

答案 0 :(得分:1)

你在stringconverter中有一个空指针异常,因为你可以得到一个空用户。

您的字符串转换器应该只在不修改项目的情况下将用户转换为/从字符串转换,因为您不知道它将被调用多长时间。

要添加用户,我在添加新用户的组合中添加一个on事件处理程序(当您键入enter时)。

请注意,由于字符串转换器,您可以在组合框上调用getValue并获取具有输入名称的用户

你应该添加一个加号按钮来提交用户而不是我的on事件处理程序

这是我的工作示例:

public class Main extends Application {
Stage window;

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

@Override
public void start(Stage primaryStage) {

    window = primaryStage;
    window.setTitle("Sample");
    GridPane grid = new GridPane();
    User usr1 = new User("Witold", "ciastko");
    User usr2 = new User("Michał", "styk");
    User usr3 = new User("Maciej", "masloo");
    ComboBox<User> combo1 = new ComboBox<User>();
    combo1.getItems().addAll(usr1, usr2, usr3);
    combo1.setConverter(new StringConverter<User>() {
        @Override
        public String toString(User usr) {
            return usr == null ? "" : usr.getName();
        }

        @Override
        public User fromString(String s) {
            User usr = new User(s, "haslo");
            return usr;
        }
    });
    combo1.setEditable(true);
    combo1.addEventHandler(KeyEvent.KEY_RELEASED, e -> {
        if (e.getCode() == KeyCode.ENTER) {
            combo1.getItems().add(combo1.getValue());
        }

    });
    GridPane.setConstraints(combo1, 2, 1);
    grid.getChildren().addAll(combo1);
    Scene scene = new Scene(grid, 400, 200);
    window.setScene(scene);
    window.show();

}