gpt4 book ai didi

java - JTable:显示包含列表的数据

转载 作者:行者123 更新时间:2023-12-01 11:18:03 37 4
gpt4 key购买 nike

我有一个名为“配置文件”的对象列表,每个配置文件都有一个功能列表(配置文件可以执行的操作)以及与该配置文件关联的用户列表。

我想在 JTable 中显示此信息。首先,显示具有文件功能的配置文件,然后显示该配置文件中的用户。像这样的事情:

------------------------------------
|Profile | Operation1 | Operation 2|
------------------------------------
P1 | X | | <- users1 in P1 can do only Operation1
--user1 | | |
--user2 | | |
P2 | X | X |
--user2 | | |
--user3 | | |
--user4 | | |
------------------------------------

首先,我实现了一个更智能的 getRowCount() 方法,然后是一个 getValueAt 方法,该方法在 JTable 中打印配置文件以及在其行下与其关联的所有用户。事情似乎正常,但是当单击一行时,即使 isCellEditor() 始终返回 false 并且未实现方法 setValueAt(..),JTable 也会完成修改(该行会随着添加到 JTable 中的最后一个配置文件而更改) 。谁能告诉我为什么会发生这种情况?我想,也许每次单击一行时都会调用 getValueAt(...) 方法,这会给我的数据结构带来麻烦!接下来,有一种方法可以告诉 JTable 列仅包含 boolean 值,而行与配置文件相关吗?预先感谢您

接下来,代码:J框架:

import it.Profile.Operation;
import java.awt.BorderLayout;
import java.util.LinkedList;
import java.util.List;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.AbstractTableModel;
import javax.swing.table.DefaultTableCellRenderer;

public class JTableTest extends JFrame {

List<Profile> list_profiles = new LinkedList<Profile>();
List<User> list_users = new LinkedList<User>();

public JTableTest() {
super();

Profile admin = new Profile("P1");
admin.addOp(Operation.OPERATION1);
admin.addOp(Operation.OPERATION2);
admin.addUser(new User("User 1"));
list_profiles.add(admin);

Profile p1 = new Profile("P2");
p1.addOp(Operation.OPERATION2);
p1.addUser(new User("User 2"));
list_profiles.add(p1);

Profile p2 = new Profile("P3");
p2.addOp(Operation.OPERATION1);
p2.addOp(Operation.OPERATION3);
p2.addUser(new User("User 1"));
list_profiles.add(p2);

create_jframe();
}

private void create_jframe() {

JTable profile_jtable = new JTable(new ProfileTableModel());
DefaultTableCellRenderer renderer = (DefaultTableCellRenderer) profile_jtable
.getTableHeader().getDefaultRenderer();
renderer.setHorizontalAlignment(0);

this.getContentPane().add(new JScrollPane(profile_jtable),
BorderLayout.CENTER);

}

public static void main(String[] args) {
JFrame jframe = new JTableTest();
jframe.pack();
jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jframe.setVisible(true);
}

private class ProfileTableModel extends AbstractTableModel {

/**
*
*/
int riga = 0;
private int users_number = 0;
private Profile profilo = list_profiles.get(riga);
private boolean show_profile = true;

private static final long serialVersionUID = 7525220824319997602L;
private String[] columns_name = { "User", "OPERATION 1", "OPERATION 2",
"OPERATION 3" };

public ProfileTableModel() {
super();
}

@Override
public int getColumnCount() {
return columns_name.length;
}

@Override
public int getRowCount() {
int count = list_profiles.size();
for (int i = 0; i < list_profiles.size(); i++) {
count += list_profiles.get(i).getListUsers().size();
}
return count;
}

/*
* @Override public Class<?> getColumnClass(int c) { if (c == 0) return
* String.class; return Boolean.class; }
*/

@Override
public Object getValueAt(int row, int column) {

if (show_profile) {
if (column == 0)
return profilo.getName();
Operation f = null;
switch (column) {
case 1:
f = Operation.OPERATION1;
break;

case 2:
f = Operation.OPERATION2;
break;

case 3:
f = Operation.OPERATION3;
users_number = profilo.getListUsers().size();
if (users_number != 0)
show_profile = false;
break;
}
return list_profiles.get(riga).getOperations().contains(f);
} else {

if (column == 0) {
users_number--;
String nome = profilo.getListUsers().get(users_number)
.getName();
if (users_number == 0 && riga < list_profiles.size() - 1) {
riga++;
profilo = list_profiles.get(riga);
}
return "---" + nome;
}
if (column == 3)
show_profile = true;

}
return null;
}

@Override
public String getColumnName(int i) {
return columns_name[i];
}

@Override
public boolean isCellEditable(int row, int column) {
if (row == 0 || row == 1)
return false;
return true;
}

}
}

简介:

import java.util.LinkedList;
import java.util.List;

public class Profile {

public enum Operation {
OPERATION1, OPERATION2, OPERATION3
}

private List<Operation> list_operations;
private String name;
private List<User> list_users;

public Profile (String name) {
this.name=name;
this.list_operations=new LinkedList<Operation>();
this.list_users=new LinkedList<User>();
}

public Profile (String name, List<Operation> list_operation) {
this.name=name;
this.list_operations=list_operations;
}

public void addOp(Operation new_function) {
this.list_operations.add(new_function);
}

public void removeOp(Operation op) {
this.list_operations.remove(op);
}

public String getName() {
return name;
}

public List<Operation> getOperations() {
return this.list_operations;
}

public void setName(String name) {
this.name=name;
}

public void addUser(User user) {
this.list_users.add(user);
}

public List<User> getListUsers() {
return list_users;
}
}

用户: 公共(public)类用户{

public String getName() {
return name;
}

private String name;


public User (String name) {
this.name=name;
}
}

Upolad 图片让您了解我的问题:在点击之前,当一切似乎正常时

enter image description here

点击后,当我的梦想崩溃时:P

enter image description here

您可以看到单击后 jTable 结构已被修改。

编辑:getValueAt根据埃里克先生的提示进行修改

@Override
public Object getValueAt(int row, int column) {
int cpt = 0;
int profile = 0;
int user = 0;
for (Profile p : list_profiles) {
if (cpt++ == row) {
if (column == 0)
return list_profiles.get(profile).getName();
Operation f = null;
switch (column) {
case 1:
f = Operation.OPERATION1;
break;

case 2:
f = Operation.OPERATION2;
break;

case 3:
f = Operation.OPERATION3;
profile++;
break;
}
return list_profiles.get(profile).getOperations()
.contains(f);
} else {
String nome;
for (User u : p.getListUsers()) {
if (cpt++ == row) {
if (column == 0) {
return list_profiles.get(profile)
.getListUsers().get(user).getName();
}
}
}
}
}
return null;
}

最佳答案

问题来自于您在 getValueAt() 中所做的事情方法。基本上,您正在使用字段 riga 更改表模型的状态。 , show_profile , profilousers_number .

您假设 Swing 正在调用 getValueAt()始终按正确的顺序(第一行、第一列,然后第一行、第二列,依此类推)。这第一次有效,但是当您单击表格后,Swing 可能需要调用 getValueAt()再次针对特定的单元格,这会完全扰乱您的模型。 相反,您应该假设 Swing 将调用 getValueAt()无论何时,无论什么顺序。

所以你应该摆脱这些字段,并应用无状态逻辑。例如,要知道在给定行显示什么,您可以浏览列表并停在右行:

int cpt = 0
for(Profile p : list_profiles){
if(cpt++ == row){
// return value corresponding to profile
}else{
for(User u: p.getListUsers()){
if(cpt++ == row)
// return value corresponding to user
}
}
}

And, next, there is a way to tell to JTable that the columns contain Boolean only is the row is related to a Profile?

我想如果你返回 Boolean而不是StringgetValueAt() ,Swing 会正确显示 JTable 。您还需要覆盖 getColumnClass()方法并返回 String.class对于 column==0Boolean.class否则。 (返回null将显示一个空单元格,就像当前的情况一样)

注意:也许可以考虑在您的用例中使用 TreeTable(这将使您的模型更容易实现,因为您的数据自然具有树结构)。 SwingX 有一个 really good implementation .

关于java - JTable:显示包含列表的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31559803/

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