4

こんにちは、このコードを使用してデータを取得しています

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

しかし、これを出力として取得しています

passbookprintingdemo.AccountPage$Account@1eb5170

このクラス名の代わりにデータを取得する方法を教えてもらえますか?

前もって感謝します

4

1 に答える 1

7
table.getSelectionModel().getSelectedItem().YourGetterFunctionName and you will get your data :) 
于 2012-05-03T06:25:36.237 に答える