Java swing中树状组件JTree的使用,左边点击不同菜单

效果:单击左边树状菜单,右边显示不同的页面
文章目录
效果图
代码

Java swing中树状组件JTree的使用,左边点击不同菜单

文章插图
我尽量删除了一些不需要的代码,包括数据处理部分的代码,只留下了页面的代码 。
【Java swing中树状组件JTree的使用,左边点击不同菜单】实现右边页面随左边树状菜单的变化这部分代码并不是很复杂,这部分页面代码我提取出来了,有问题请留言
package Wu;import java.awt.BorderLayout;import java.awt.Button;import java.awt.Container;import java.awt.Dimension;import java.awt.FlowLayout;import java.awt.GridLayout;import java.awt.MenuItem;import java.awt.PopupMenu;import java.awt.ScrollPane;import java.awt.Window;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.event.MouseAdapter;import java.awt.event.MouseEvent;import java.awt.event.MouseListener;import java.sql.Connection;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;import java.util.Calendar;import java.util.Date;import javax.swing.Action;import javax.swing.Box;import javax.swing.JButton;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.JMenuItem;import javax.swing.JPanel;import javax.swing.JPopupMenu;import javax.swing.JScrollPane;import javax.swing.JTable;import javax.swing.JTextArea;import javax.swing.JTextField;import javax.swing.JTree;import javax.swing.ScrollPaneConstants;import javax.swing.event.TreeSelectionEvent;import javax.swing.event.TreeSelectionListener;import javax.swing.tree.DefaultMutableTreeNode;import javax.swing.tree.TreePath;import javax.swing.tree.TreeSelectionModel;public class ManagerUser extends JFrame implements TreeSelectionListener{JTree tree;private JPanel p;ManagerUser ManagerUser=this;ManagerUser(){Container c = this.getContentPane();DefaultMutableTreeNode root=new DefaultMutableTreeNode("分类");DefaultMutableTreeNode route=new DefaultMutableTreeNode("路线管理");DefaultMutableTreeNode people=new DefaultMutableTreeNode("用户管理");DefaultMutableTreeNode add=new DefaultMutableTreeNode("添加路线");DefaultMutableTreeNode revice=new DefaultMutableTreeNode("修改路线信息");DefaultMutableTreeNode delete=new DefaultMutableTreeNode("删除路线");DefaultMutableTreeNode See=new DefaultMutableTreeNode("查看所有路线");DefaultMutableTreeNode show=new DefaultMutableTreeNode("显示用户信息");DefaultMutableTreeNode chat=new DefaultMutableTreeNode("用户咨询界面");root.add(route);root.add(people);route.add(add);route.add(revice);route.add(delete);route.add(See);people.add(show);people.add(chat);tree=new JTree(root);tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);tree.addTreeSelectionListener(this);p=new JPanel();p.setSize(1000,1000);c.add(tree,BorderLayout.WEST);c.add(p,BorderLayout.CENTER);setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);setVisible(true);//validate();}public void valueChanged(TreeSelectionEvent e) {DefaultMutableTreeNode selectionNode=(DefaultMutableTreeNode)tree.getLastSelectedPathComponent();if(selectionNode.isLeaf()){ //叶子节点的监听System.out.println(selectionNode.toString());if(selectionNode.toString()=="添加路线") {//添加路线AddRouteListener computer = new AddRouteListener();JPanel p1=new JPanel();System.out.println(selectionNode.toString());JTextField textInput1;JTextField textInput2;JTextField textInput3;JTextField textInput4;JTextField textInput5;JTextField textInput6;JTextField textInput7;JTextField textInput8;JTextField textInput9;JTextField textInput10;JButton button1,button2,button3;Box box,box1,box2,box3,box4,box5;box= Box.createVerticalBox();box1 = Box.createHorizontalBox();box4 = Box.createHorizontalBox();box2 = Box.createVerticalBox();//垂直的盒子box3 = Box.createVerticalBox();box2.add(new JLabel("要增加的班次:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("起点站:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("终点站:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("软卧票数:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("发车时间:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("行车时间:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("统一价格:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("硬卧票数:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("硬座票数:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("无座票数:"));button1 = new JButton("确定");button2 = new JButton("退出");button3 = new JButton("刷新");textInput1 = new JTextField(10);box3.add(textInput1);box3.add(Box.createHorizontalStrut(1));textInput2 = new JTextField(10);box3.add(textInput2); box3.add(Box.createHorizontalStrut(1));textInput3 = new JTextField(10);box3.add(textInput3);box3.add(Box.createHorizontalStrut(1));textInput4 = new JTextField(10);box3.add(textInput4);textInput5 = new JTextField(10);box3.add(textInput5);textInput6 = new JTextField(10);box3.add(textInput6); textInput7 = new JTextField(10);box3.add(textInput7);textInput8 = new JTextField(10);box3.add(textInput8);textInput9 = new JTextField(10);box3.add(textInput9);textInput10 = new JTextField(10);box3.add(textInput10);box4.add(button1);box4.add(Box.createHorizontalStrut(20));box4.add(button2);box4.add(button3);box1.add(box2);box1.add(box3);box.add(box1);box.add(box4);p.addMouseListener(new MouseAdapter() {public void mouseClicked(MouseEvent e) {if (e.getButton() == MouseEvent.BUTTON3) {// 弹出菜单jp.show(p, e.getX(), e.getY());}}/* void copy_mousePressed(ActionEvent e) {String str=e.getActionCommand();if(str.equals(copy.getText())) {this.copy();}else if(str.equals(copy.getText())) {this.paste();}}*/});p.setVisible(true);p1.add(box);p1.setSize(800,800);//p1.setBounds(0, 0, 200, 100);p.removeAll();p.add(p1);}if(selectionNode.toString()=="修改路线信息") {//修改路线ReviseRouteListener computer = new ReviseRouteListener();JPanel p1=new JPanel();System.out.println(selectionNode.toString());JTextField textInput1;JTextField textInput2;JTextField textInput3;JTextField textInput4;JTextField textInput5;JTextField textInput6;JTextField textInput7;JTextField textInput8;JTextField textInput9;JTextField textInput10;JButton button1,button2,button3;Box box,box1,box2,box3,box4,box5;box= Box.createVerticalBox();box1 = Box.createHorizontalBox();box4 = Box.createHorizontalBox();box2 = Box.createVerticalBox();//垂直的盒子box3 = Box.createVerticalBox();box2.add(new JLabel("要修改的班次:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("起点站:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("终点站:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("软卧票数:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("发车时间:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("行车时间:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("统一价格:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("硬卧票数:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("硬座票数:"));box2.add(Box.createHorizontalStrut(1));box2.add(new JLabel("无座票数:"));button1 = new JButton("确定");button2 = new JButton("退出");button3 = new JButton("刷新");textInput1 = new JTextField(10);box3.add(textInput1);box3.add(Box.createHorizontalStrut(1));textInput2 = new JTextField(10);box3.add(textInput2); box3.add(Box.createHorizontalStrut(1));textInput3 = new JTextField(10);box3.add(textInput3);box3.add(Box.createHorizontalStrut(1));textInput4 = new JTextField(10);box3.add(textInput4);textInput5 = new JTextField(10);box3.add(textInput5);textInput6 = new JTextField(10);box3.add(textInput6); textInput7 = new JTextField(10);box3.add(textInput7);textInput8 = new JTextField(10);box3.add(textInput8);textInput9 = new JTextField(10);box3.add(textInput9);textInput10 = new JTextField(10);box3.add(textInput10);box4.add(button1);box4.add(Box.createHorizontalStrut(20));box4.add(button2);box4.add(button3);box1.add(box2);box1.add(box3);box.add(box1);box.add(box4);p1.add(box);p1.setBounds(0, 0, 800, 800);p.addMouseListener(new MouseAdapter() {public void mouseClicked(MouseEvent e) {if (e.getButton() == MouseEvent.BUTTON3) {// 弹出菜单jp.show(p, e.getX(), e.getY());}}});p.setVisible(true);p.removeAll();p.add(p1);}if(selectionNode.toString()=="删除路线") {//删除路线DeleteRouteListener computer = new DeleteRouteListener();JPanel p1=new JPanel();System.out.println(selectionNode.toString());JTextField textInput1;JTextField textInput2;JTextField textInput3;JTextField textInput4;JTextField textInput5;JTextField textInput6;JButton button1,button2,button3;Box box,box1,box2,box3,box4,box5;box= Box.createVerticalBox();box1 = Box.createHorizontalBox();box4 = Box.createHorizontalBox();box2 = Box.createVerticalBox();//垂直的盒子box3 = Box.createVerticalBox();box2.add(new JLabel("要删除的班次:"));button1 = new JButton("确定");button2 = new JButton("退出");button3 = new JButton("刷新");textInput1 = new JTextField(10);box3.add(textInput1);box4.add(button1);box4.add(Box.createHorizontalStrut(20));box4.add(button2);box4.add(button3);box1.add(box2);box1.add(box3);box.add(box1);box.add(box4);p1.add(box);p1.setBounds(0, 0, 800, 800);p.addMouseListener(new MouseAdapter() {public void mouseClicked(MouseEvent e) {if (e.getButton() == MouseEvent.BUTTON3) {// 弹出菜单jp.show(p, e.getX(), e.getY());}}});p.setVisible(true);p.removeAll();p.add(p1);}if(selectionNode.toString()=="查看所有路线") {JButton button1=new JButton("查看所有路线");JPanel p1=new JPanel();p1.setLayout(new java.awt.BorderLayout());JTable table; Object a[][];a=new Object[1000][11];Object name[]= {"班次","起点站","终点站","发车时间","行车时间","统一价格","软卧剩余票数","硬卧剩余票数","硬座剩余票数","无座剩余票数","状态"};table=new JTable(a,name);table.setSize(1000,1000);//滚动条JScrollPane jsp=new JScrollPane(table);p1.add(jsp,BorderLayout.SOUTH);//p1.add(jsp,BorderLayout.CENTER);//a[45][3]="吴洪伟";for(int i=0;i