可能重复:
How to display first row until last row to JR report using Java?
我想从第一行到最后一行调用表中的记录并显示它..
我使用了这种语法:
TableModelEvent tab = new TableModelEvent(view.getTable().getModel());
int first = tab.getFirstRow();
int last = tab.getLastRow();
for(int a = first;a<last;a++){
JTable tables = new JTable(view.getTable().getModel());
if(tables.getColumnName(3).equals("Price")){
BigDecimal price = (((BigDecimal)view.getTable().getModel().getValueAt(a,3)));
但它只是显示最后一行的数据,那么如何从第一行到lastrow显示数据呢?