Javafx,如何获取 TableCell 引用的对象?

8

我有一个回调函数,监听 TableView 中所选单元格的变化:

        Callback<TableColumn<MyFTPFile,String>, TableCell<MyFTPFile,String>> cellFactory =
            new Callback<TableColumn<MyFTPFile,String>, TableCell<MyFTPFile,String>>() {
                public TableCell<MyFTPFile,String> call(TableColumn<MyFTPFile,String> p) {
                    TableCell<MyFTPFile,String> cell = new TableCell<MyFTPFile, String>() {
                        @Override
                        public void updateItem(String item, boolean empty) {
                            super.updateItem(item, empty);
                            setText(empty ? null : getString());
                            setGraphic(null);
                        }

                        private String getString() {
                            return getItem() == null ? "" : getItem().toString();
                        }
                    };

                    cell.addEventFilter(MouseEvent.MOUSE_CLICKED, new EventHandler<MouseEvent>() {
                        @Override
                        public void handle(MouseEvent event) {
                            if (event.getClickCount() > 1) {
                                TableCell<MyFTPFile,String> c = (TableCell<MyFTPFile,String>) event.getSource();


                                ftpObservablelist = MyFTPClient.getInstance().getFtpObservableList(); 
                                ftpTable.setItems(ftpObservablelist);

                            }
                        }
                    });

现在,我想获取被双击的单元格引用的MyFTPFile对象,以便我可以将其传递给另一个类并进行操作... 有任何想法如何做到这一点吗???

提前致谢。

1个回答

12

MyFTPFile对象与单元格的行相关联,因此正如提问者在评论中指出的那样,可以通过cell.getTableRow().getItem()检索它。

起初我认为应该使用cell.getItem(),它返回与单元格关联的数据值。然而,大多数情况下,单元格数据值将是支持项的属性而不是对象本身的属性(例如MyFTPFile对象的文件名字段)。

好奇的人可以使用可执行示例:

import javafx.application.Application;
import javafx.event.EventHandler;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.TableCell;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.control.cell.TextFieldTableCell;
import javafx.scene.input.MouseEvent;
import javafx.stage.Stage;
import javafx.util.Callback;

public class TableClickListener extends Application {

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

  class FTPTableCell<S, T> extends TextFieldTableCell<S, T> {
    FTPTableCell() {
      super();
      addEventFilter(MouseEvent.MOUSE_CLICKED, new EventHandler<MouseEvent>() {
        @Override
        public void handle(MouseEvent event) {
          if (event.getClickCount() > 1 && getItem() != null) {
            System.out.println("Sending " + getTableRow().getItem() + " to the FTP client");
          }
        }
      });
    }
  }

  final Callback<TableColumn<MyFTPFile, String>, TableCell<MyFTPFile, String>> FTP_TABLE_CELL_FACTORY =
      new Callback<TableColumn<MyFTPFile, String>, TableCell<MyFTPFile, String>>() {
        public TableCell<MyFTPFile, String> call(TableColumn<MyFTPFile, String> p) {
          return new FTPTableCell<>();
        }
      };

  @Override
  public void start(final Stage stage) {
    final TableView<MyFTPFile> table = new TableView<>();

    final TableColumn<MyFTPFile, String> filenameColumn = new TableColumn<>("Filename");
    filenameColumn.setCellValueFactory(new PropertyValueFactory<MyFTPFile, String>("filename"));
    filenameColumn.setCellFactory(FTP_TABLE_CELL_FACTORY);
    filenameColumn.setMinWidth(150);

    final TableColumn<MyFTPFile, String> ratingColumn = new TableColumn<>("Rating");
    ratingColumn.setCellValueFactory(new PropertyValueFactory<MyFTPFile, String>("rating"));
    ratingColumn.setCellFactory(FTP_TABLE_CELL_FACTORY);
    ratingColumn.setMinWidth(20);

    table.getColumns().setAll(filenameColumn, ratingColumn);

    table.getItems().setAll(
        new MyFTPFile("xyzzy.txt", 10),
        new MyFTPFile("management_report.doc", 1),
        new MyFTPFile("flower.png", 7)
    );

    table.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);

    stage.setScene(new Scene(new Group(table)));
    stage.show();
  }

  public class MyFTPFile {
    private final String filename;
    private final int rating;

    MyFTPFile(String filename, int rating) {
      this.filename = filename;
      this.rating = rating;
    }

    public String getFilename() {
      return filename;
    }

    public int getRating() {
      return rating;
    }

    @Override
    public String toString() {
      return "MyFTPFile{" +
          "filename='" + filename + '\'' +
          ", rating=" + rating +
          '}';
    }
  }

}

2
谢谢,但我必须使用cell.getTableRow().getItem()来获取对象。 - Ilir

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接