gpt4 book ai didi

java - 更改 JTree 中的节点

转载 作者:行者123 更新时间:2023-12-01 12:52:09 24 4
gpt4 key购买 nike

有人可以帮我修改我的代码吗?我在 ArrayList 中有一些数据,我用 JTree 来显示它。我希望能够编辑我的数据并将其保存在我的容器中。现在视觉部分工作完美,但我的 ArrayList 内部没有任何变化。我怎样才能达到我的目标?

这就是我的 JTree 的样子:

 public TreeNode makeTree()
{
ArrayList <Factory> factories = myparser.parseXml();

DefaultMutableTreeNode root = new DefaultMutableTreeNode("Factories");

for (int i=0; i<factories.size(); ++i)
{
Factory factory = factories.get(i);
DefaultMutableTreeNode factory1 = new DefaultMutableTreeNode(factory.getName());
root.add(factory1);
for (int j=0; j<factory.getDepartments().size(); ++j)
{
Department department = factory.getDepartments().get(j);
DefaultMutableTreeNode department1 = new DefaultMutableTreeNode(department.getName());
factory1.add(department1);
for (int k=0; k<department.getSections().size(); ++k)
{
Section section = department.getSections().get(k);
DefaultMutableTreeNode section1 = new DefaultMutableTreeNode(section.getName());
department1.add(section1);
for (int m=0; m<section.getProducts().size(); ++m)
{
Product product = section.getProducts().get(m);
DefaultMutableTreeNode product1 = new DefaultMutableTreeNode(product.getId());
section1.add(product1);
DefaultMutableTreeNode product1_amount = new DefaultMutableTreeNode(product.getAmount());
product1.add(product1_amount);
}
}
}
}
return root;
}

这是我的 Action 监听器:

 JButton addChildButton = new JButton("Add Child");
addChildButton.addActionListener(new
ActionListener()
{
public void actionPerformed(ActionEvent event)
{
DefaultMutableTreeNode selectedNode
= (DefaultMutableTreeNode)
tree.getLastSelectedPathComponent();

if (selectedNode == null) return;

DefaultMutableTreeNode newNode
= new DefaultMutableTreeNode("New");
model.insertNodeInto(newNode, selectedNode,
selectedNode.getChildCount());

// now display new node

TreeNode[] nodes = model.getPathToRoot(newNode);
TreePath path = new TreePath(nodes);
tree.scrollPathToVisible(path);
}
});

这是我关于女巫arralist的类(class)基于:

import java.util.ArrayList;
public class Factory {

private String name;
private ArrayList <Department> departments;

public Factory(String name, ArrayList<Department> departments)
{this.name = name; this.departments = departments;}


public String getName()
{
return this.name;
}

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

public void addDepartment(Department department)
{
departments.add(department);
}

public ArrayList<Department> getDepartments()
{
return this.departments;
}

public void setDepartments(ArrayList<Department> departments)
{
this.departments = departments;
}

}

import java.util.ArrayList;

public class Department {

private String name;
private ArrayList <Section> sections;

public Department(String name, ArrayList<Section> sections)
{this.name = name; this.sections = sections;}

public String getName()
{
return this.name;
}

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

public void addSection(Section section)
{
sections.add(section);
}

public ArrayList<Section> getSections()
{
return this.sections;
}

public void setSections(ArrayList<Section> sections)
{
this.sections = sections;
}

}

import java.util.ArrayList;

public class Section {

private String name;
private ArrayList<Product> products;

public Section(String name, ArrayList<Product> products)
{this.name = name; this.products = products;}

public String getName()
{
return this.name;
}

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

public void addProduct(Product product)
{
products.add(product);
}

public ArrayList<Product> getProducts()
{
return this.products;
}

public void setProducts(ArrayList<Product> products)
{
this.products = products;
}


}



public class Product {

private String id;
private int amount;

public Product (String id, int amount){this.id = id; this.amount = amount;}

public String getId()
{
return this.id;
}

public void setId(String id)
{
this.id = id;
}

public int getAmount()
{
return this.amount;
}

public void setAmount(int amount)
{
this.amount = amount;
}

}

最佳答案

您不仅可以向 JTree 节点添加新值,还需要向 Department/Factory 实例添加新值。

尝试下一个示例,其中 MyObject 是表示 TreeNode 的类。 “add”是按钮,它将新对象添加到 JTree 和 MyObject 实例,“print”打印以控制台当前子对象:

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.List;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTree;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeModel;
import javax.swing.tree.TreeNode;
import javax.swing.tree.TreePath;

public class TestFrame extends JFrame {

private JTree tree;
private DefaultTreeModel model;

public TestFrame() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
init();
pack();
setVisible(true);
}

private void init() {
TreeNode root = getNodes();
tree = new JTree(model = new DefaultTreeModel(root));
tree.setRootVisible(false);

JButton add = new JButton("add new");
add.addActionListener(getAddActionListener());

JButton print = new JButton("print childs");
print.addActionListener(getPrintActionListener());
JPanel btns = new JPanel();
btns.add(add);
btns.add(print);

add(new JScrollPane(tree));
add(btns,BorderLayout.SOUTH);
}

private ActionListener getPrintActionListener() {
return new ActionListener() {

@Override
public void actionPerformed(ActionEvent e) {
DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode) tree.getLastSelectedPathComponent();
if (selectedNode == null){
return;
}
MyObject obj = (MyObject) selectedNode.getUserObject();
System.out.println(obj.childs);
}
};
}

private ActionListener getAddActionListener() {
return new ActionListener() {

@Override
public void actionPerformed(ActionEvent e) {
DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode) tree.getLastSelectedPathComponent();
if (selectedNode == null){
return;
}
MyObject obj = (MyObject) selectedNode.getUserObject();
MyObject newChild = new MyObject(obj.name+"-"+(obj.childs.size()+1));
obj.childs.add(newChild);
DefaultMutableTreeNode newNode = new DefaultMutableTreeNode(newChild);
model.insertNodeInto(newNode, selectedNode,selectedNode.getChildCount());
TreeNode[] nodes = model.getPathToRoot(newNode);
TreePath path = new TreePath(nodes);
tree.scrollPathToVisible(path);
}
};
}

private TreeNode getNodes() {
MyObject obj1 = new MyObject("1");
MyObject obj2 = new MyObject("1-1");

obj1.childs.add(obj2);
obj2.childs.add(new MyObject("2-1"));
obj2.childs.add(new MyObject("2-2"));

obj1.childs.add(new MyObject("1-2"));
obj1.childs.add(new MyObject("1-3"));

DefaultMutableTreeNode root = new DefaultMutableTreeNode();
construct(obj1,root);
return root;
}

private void construct(MyObject obj1, DefaultMutableTreeNode root) {
DefaultMutableTreeNode node = new DefaultMutableTreeNode(obj1);
root.add(node);
for(MyObject o : obj1.childs){
construct(o,node);
}
}

public static void main(String... strings) {
new TestFrame();
}

private class MyObject{
private String name;
private List<MyObject> childs = new ArrayList<>();

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

@Override
public String toString() {
return name;
}

}

}

关于java - 更改 JTree 中的节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24140290/

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