Hello iam使用此代码获取数据
Set<Account> selection =new HashSet<Account>table.getSelectionModel().getSelectedItem();
但我将此作为输出
passbookprintingdemo.AccountPage$Account@1eb5170
任何人都可以解释我如何获取数据而不是这个类名?
提前致谢
答案 0 :(得分:7)
table.getSelectionModel().getSelectedItem().YourGetterFunctionName and you will get your data :)