我想从xml文件中获取属性值,并将值放在Jtable中。
我使用Class<?>
方法获取Sortedset中每个单元的类:
Class<?> clazz = machine.getClass();
(machine是在迭代器for(*something* machine : machines)
上运行的对象)
然后,我使用clazz.getDeclaredFields()
来设置表格左侧的属性。
for(Field field : clazz.getDeclaredFields())
{
table.setValueAt(field.getName(),i,0);
if (breakpoint==i) //if the line number from the table is matching the correct attribute,
break; //then break
breakPoint++;
}
我正在寻找获取属性值的函数,然后我可以将值放在表的右侧。