本文介绍了从JTable单元获取值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Jtable中创建了一个可编辑的列。
I made a column editable in Jtable.
我在编辑单元格时想要一个单元格中的旧值
I want old values from a cell when I have finished editing a cell
推荐答案
你可以使用
table.getModel()。getValueAt (row_index,col_index);
其中 table
是表的名称和它会返回一个对象
where table
is the name of the table and it will return an Object
通过这个。它可能对你有用。
Go through this Getting cell value. It may be useful for you.
这篇关于从JTable单元获取值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!