我有一个正在读取的二进制文件,我想从该文件中获取余额并将其输入到 TextField 中。变量是浮点数,我该怎么做?
具体来自这部分代码。
while(true){
ST = (SavedTrans) ois.readObject();
viewTable.addRow(new Object[] {ST.getDate(), ST.getDrop(), ST.getCheckNo(),
ST.getDescription(), ST.getDeposit(), ST.getWithdraw(),
ST.getBalance()}
);
if(ST == null){
break;
}
我试图让 ST.getBalance() 显示在 TextField 上,这种方式甚至可能吗?