【问题标题】:Making a search bar in javafx在 javafx 中制作搜索栏
【发布时间】:2017-11-29 18:32:44
【问题描述】:

我有一个使用 javafx 编写的代码,它创建一个表视图,然后将给定的数据插入另一个文件中。我试图实现一个搜索栏。我希望能够在 gui 中搜索表格并显示匹配项。有什么方向吗?

编辑:我知道这个问题很笼统,我没有期待一个准确的答案,我只是在寻找方向。

【问题讨论】:

  • 欢迎来到 StackOverflow。你的问题对于这个论坛来说实在是太宽泛了,它倾向于有明确答案的精确和具体的问题。我建议使用tour 并查看该站点的help center,以便发布有助于该站点的各种问题。 (也就是说,请查看 code.makery.ch/blog/javafx-8-tableview-sorting-filtering,这是一个涵盖您所询问的功能的热门教程。)看看您是否可以实现您想要做的事情,并在遇到困难时使用代码发布具体问题。
  • 我同意詹姆斯的观点。你的问题太笼统了。我通常做的是使用ChoiceBoxTextFieldChoiceBox 允许我选择要搜索的表列。 TextField 进行搜索。我还使用FilteredList 来设置表格项。

标签: java javafx


【解决方案1】:

这是我从here 更改的示例应用程序。

我更改了应用程序以使用ChoiceBoxTextFieldFilteredList 过滤TableViewTextField's onKeyReleased 根据ChoiceBox's 当前值进行过滤。

代码中的注释。

import javafx.application.Application;
import javafx.beans.property.SimpleStringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.collections.transformation.FilteredList;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.ChoiceBox;
import javafx.scene.control.Label;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.stage.Stage;

public class TableViewSample extends Application
{

    private TableView<Person> table = new TableView<Person>();
    private final ObservableList<Person> data
            = FXCollections.observableArrayList(
                    new Person("Jacob", "Smith", "jacob.smith@example.com"),
                    new Person("Isabella", "Johnson", "isabella.johnson@example.com"),
                    new Person("Ethan", "Williams", "ethan.williams@example.com"),
                    new Person("Emma", "Jones", "emma.jones@example.com"),
                    new Person("Michael", "Brown", "michael.brown@example.com")
            );

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

    @Override
    public void start(Stage stage)
    {
        Scene scene = new Scene(new Group());
        stage.setTitle("Table View Sample");
        stage.setWidth(450);
        stage.setHeight(550);

        final Label label = new Label("Address Book");
        label.setFont(new Font("Arial", 20));

        table.setEditable(true);

        TableColumn firstNameCol = new TableColumn("First Name");
        firstNameCol.setMinWidth(100);
        firstNameCol.setCellValueFactory(
                new PropertyValueFactory<Person, String>("firstName"));

        TableColumn lastNameCol = new TableColumn("Last Name");
        lastNameCol.setMinWidth(100);
        lastNameCol.setCellValueFactory(
                new PropertyValueFactory<Person, String>("lastName"));

        TableColumn emailCol = new TableColumn("Email");
        emailCol.setMinWidth(200);
        emailCol.setCellValueFactory(
                new PropertyValueFactory<Person, String>("email"));

        FilteredList<Person> flPerson = new FilteredList(data, p -> true);//Pass the data to a filtered list
        table.setItems(flPerson);//Set the table's items using the filtered list
        table.getColumns().addAll(firstNameCol, lastNameCol, emailCol);

        //Adding ChoiceBox and TextField here!
        ChoiceBox<String> choiceBox = new ChoiceBox();
        choiceBox.getItems().addAll("First Name", "Last Name", "Email");
        choiceBox.setValue("First Name");

        TextField textField = new TextField();
        textField.setPromptText("Search here!");
        textField.textProperty().addListener((obs, oldValue, newValue) -> {
            switch (choiceBox.getValue())//Switch on choiceBox value
            {
                case "First Name":
                    flPerson.setPredicate(p -> p.getFirstName().toLowerCase().contains(newValue.toLowerCase().trim()));//filter table by first name
                    break;
                case "Last Name":
                    flPerson.setPredicate(p -> p.getLastName().toLowerCase().contains(newValue.toLowerCase().trim()));//filter table by last name
                    break;
                case "Email":
                    flPerson.setPredicate(p -> p.getEmail().toLowerCase().contains(newValue.toLowerCase().trim()));//filter table by email
                    break;
            }
        });

        choiceBox.getSelectionModel().selectedItemProperty().addListener((obs, oldVal, newVal)
                -> {//reset table and textfield when new choice is selected
            if (newVal != null) {
                textField.setText("");
            }
        });

        HBox hBox = new HBox(choiceBox, textField);//Add choiceBox and textField to hBox
        hBox.setAlignment(Pos.CENTER);//Center HBox
        final VBox vbox = new VBox();
        vbox.setSpacing(5);
        vbox.setPadding(new Insets(10, 0, 0, 10));
        vbox.getChildren().addAll(label, table, hBox);

        ((Group) scene.getRoot()).getChildren().addAll(vbox);

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

    public static class Person
    {
        private final SimpleStringProperty firstName = new SimpleStringProperty();
        private final SimpleStringProperty lastName = new SimpleStringProperty();
        private final SimpleStringProperty email = new SimpleStringProperty();

        private Person(String fName, String lName, String email)
        {
            this.firstName.setValue(fName);
            this.lastName.setValue(lName);
            this.email.setValue(email);
        }

        public String getFirstName()
        {
            return firstName.get();
        }

        public void setFirstName(String fName)
        {
            firstName.set(fName);
        }
        
        public SimpleStringProperty getFirstNameProperty()
        {
            return firstName;
        }
        
        public String getLastName()
        {
            return lastName.get();
        }

        public void setLastName(String fName)
        {
            lastName.set(fName);
        }

        public SimpleStringProperty getLastNameProperty()
        {
            return lastName;
        }
        
        public String getEmail()
        {
            return email.get();
        }

        public void setEmail(String fName)
        {
            email.set(fName);
        }
        
        public SimpleStringProperty getEmailProperty()
        {
            return email;
        }
    }
}

于 2021 年 1 月 8 日更新。它现在使用TextProperty 而不是KeyListener 来设置过滤结果的谓词。

【讨论】:

  • @kleopatra,你有什么建议?
  • @kleopatra,谢谢!有机会我会更新答案的。
  • 只是为了澄清(在移动设备上打字是 .. ;) - 这样的解决方案(使用过滤列表并更新其谓词)很好,它只是错误的触发器:键处理程序只捕获键事件(惊喜),而不是改变文本的其他方式。这可以在复选框上的代码中看到:您必须将谓词与文本一起显式地为空,因为文本的程序更改没有效果。如果您收听 textProperty,您可以删除谓词的显式重置。
猜你喜欢
  • 2021-05-28
  • 1970-01-01
  • 1970-01-01
  • 2021-12-08
  • 2021-05-21
  • 2011-10-13
  • 2022-01-22
  • 1970-01-01
  • 2019-01-24
相关资源
最近更新 更多