gpt4 book ai didi

Java GUI应用程序,从列表加载数据到Jtable

转载 作者:太空宇宙 更新时间:2023-11-04 07:55:36 39 4
gpt4 key购买 nike

Java GUI应用程序,从列表加载数据到Jtable我找到了以下链接,但没有找到答案:http://docs.oracle.com/javase/tutorial/uiswing/components/table.html

请有人给我举个例子,我该怎么做。 我的对象有 5 个字段:姓名、年级、薪水、出生年份、性别并且该列表是从文件中读取的,因此我不知道该列表将有多少个对象。我在 netbeans 工作。

最佳答案

您链接到的教程有一个示例:http://docs.oracle.com/javase/tutorial/uiswing/components/table.html#data 。您应该能够将其调整为 List<Employee>很容易:

public int getRowCount() { 
return list.size();
}

public int getColumnCount() {
return 5;
}

public Object getValueAt(int row, int col) {
Employee employee = list.get(row);
if (col == 0) {
return e.getName();
}
else if (col == 1) {
return e.getGrade();
}
...
}

关于Java GUI应用程序,从列表<objects>加载数据到Jtable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13670646/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com