如何从JAVA Fx 2.0的Tableview行获取数据

时间:2012-05-01 06:15:53

标签: java tableview javafx-2

Hello iam使用此代码获取数据

Set<Account> selection =new HashSet<Account>table.getSelectionModel().getSelectedItem();

但我将此作为输出

passbookprintingdemo.AccountPage$Account@1eb5170

任何人都可以解释我如何获取数据而不是这个类名?

提前致谢

1 个答案:

答案 0 :(得分:7)

table.getSelectionModel().getSelectedItem().YourGetterFunctionName and you will get your data :)