第1个回答 2017-06-13
table=new JTable(obj,columnname);
int count=table.getSelectedRow();
for(int i=0;i<table.getRowCount();i++){
for(int j=0;j<table.getColumnCount();j++){
String str=table.getValueAt(i, j).toString();
System.out.print(str+" ");
}
System.out.println();
}本回答被网友采纳