我有以下代码:
class Files {
private static String files;
private static String duration;
private static String status;
public Files(String files, String duration, String status) {
this.files = files;
this.duration = duration;
this.status = status;
}
public static String getfiles() {
return files;
}
public static String getduration() {
return duration;
}
public static String getstatus() {
return status;
}
}
Map<Files, String> hmap = new HashMap<Files,String>();
private void AddFiles(String addfile,String addurr,String addstatus, String addpath){
Files f = new Files(addfile, addurr, addstatus);
hmap.put(f, addpath);
}
final JTable table = new JTable();
table.setBounds(26, 27, 664, 274);
table.setModel(new MyTableModel());
所以我正在创建一个新表并覆盖“getValueAt”。
class MyTableModel extends AbstractTableModel {
@Override
public int getColumnCount() {
// TODO Auto-generated method stub
return 0;
}
@Override
public int getRowCount() {
// TODO Auto-generated method stub
return 0;
}
@Override
public Object getValueAt(int rowIndex, int columnIndex) {
switch (columnIndex) {
case 0:
return Files.getfiles();
case 1:
return Files.getduration();
case 2:
return Files.getstatus();
default:
throw new IndexOutOfBoundsException();
}
}
}
但是我无法将 HashMap 的“文件”类中的变量加载到 JTable 中。谁能告诉我我做错了什么?我现在基本上被困了 3 天,非常感谢一些帮助。