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<11;i++) {a[0][i]=name[i];}jsp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);//水平滚动条始终显示jsp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);//垂直滚动条始终显示p1.add(button1, BorderLayout.NORTH);table.getColumnModel().getColumn(0).setPreferredWidth(50);//设置表格每列的宽度table.getColumnModel().getColumn(1).setPreferredWidth(80);table.getColumnModel().getColumn(2).setPreferredWidth(80);table.getColumnModel().getColumn(3).setPreferredWidth(80);table.getColumnModel().getColumn(4).setPreferredWidth(80);table.getColumnModel().getColumn(5).setPreferredWidth(80);table.getColumnModel().getColumn(6).setPreferredWidth(80);table.getColumnModel().getColumn(7).setPreferredWidth(80);table.getColumnModel().getColumn(8).setPreferredWidth(80);table.getColumnModel().getColumn(9).setPreferredWidth(80);table.getColumnModel().getColumn(10).setPreferredWidth(80);//p1.add(table,BorderLayout.SOUTH);p1.setBounds(0, 0, 800, 800);p.removeAll();p.add(p1);//table.setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS);table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);//是用来设置JTable的列宽度是否随着JTable的变化而变化。 // off固定不变。~}if(selectionNode.toString()=="显示用户信息") {JButton button1=new JButton("查看所有用户信息");JPanel p1=new JPanel();p1.setLayout(new java.awt.BorderLayout());JTable table; Object a[][];a=new Object[100][7];Object name[]= {"账号","姓名","性别","出生日期","电子邮箱","密码","已订票数"};table=new JTable(a,name);//a[99][3]="吴洪伟";for(int i=0;i<7;i++) {a[0][i]=name[i];}//滚动条JScrollPane jsp=new JScrollPane(table);p1.add(jsp,BorderLayout.SOUTH);p1.add(button1, BorderLayout.NORTH);jsp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);//水平滚动条始终显示jsp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);//垂直滚动条始终显示//p1.add(table,BorderLayout.SOUTH);p1.setBounds(0, 0, 800, 800);p.removeAll();p.add(p1);table.getColumnModel().getColumn(0).setPreferredWidth(100);//设置表格每列的宽度table.getColumnModel().getColumn(1).setPreferredWidth(80);table.getColumnModel().getColumn(2).setPreferredWidth(80);table.getColumnModel().getColumn(3).setPreferredWidth(80);table.getColumnModel().getColumn(4).setPreferredWidth(110);table.getColumnModel().getColumn(5).setPreferredWidth(80);table.getColumnModel().getColumn(6).setPreferredWidth(80);table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);//是用来设置JTable的列宽度是否随着JTable的变化而变化。 // off固定不变。~}if(selectionNode.toString()=="用户咨询界面") {ChatWindow win=new ChatWindow();win.setDefaultCloseOperation(DISPOSE_ON_CLOSE);}}}}

这篇关于Java swing中树状组件JTree的使用,左边点击不同菜单,右边显示不同页面的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/372100

相关文章

Java 正则表达式URL 匹配与源码全解析

《Java正则表达式URL匹配与源码全解析》在Web应用开发中,我们经常需要对URL进行格式验证,今天我们结合Java的Pattern和Matcher类,深入理解正则表达式在实际应用中... 目录1.正则表达式分解:2. 添加域名匹配 (2)3. 添加路径和查询参数匹配 (3) 4. 最终优化版本5.设计思

Java使用ANTLR4对Lua脚本语法校验详解

《Java使用ANTLR4对Lua脚本语法校验详解》ANTLR是一个强大的解析器生成器,用于读取、处理、执行或翻译结构化文本或二进制文件,下面就跟随小编一起看看Java如何使用ANTLR4对Lua脚本... 目录什么是ANTLR?第一个例子ANTLR4 的工作流程Lua脚本语法校验准备一个Lua Gramm

Java字符串操作技巧之语法、示例与应用场景分析

《Java字符串操作技巧之语法、示例与应用场景分析》在Java算法题和日常开发中,字符串处理是必备的核心技能,本文全面梳理Java中字符串的常用操作语法,结合代码示例、应用场景和避坑指南,可快速掌握字... 目录引言1. 基础操作1.1 创建字符串1.2 获取长度1.3 访问字符2. 字符串处理2.1 子字

Java Optional的使用技巧与最佳实践

《JavaOptional的使用技巧与最佳实践》在Java中,Optional是用于优雅处理null的容器类,其核心目标是显式提醒开发者处理空值场景,避免NullPointerExce... 目录一、Optional 的核心用途二、使用技巧与最佳实践三、常见误区与反模式四、替代方案与扩展五、总结在 Java

Vue3组件中getCurrentInstance()获取App实例,但是返回null的解决方案

《Vue3组件中getCurrentInstance()获取App实例,但是返回null的解决方案》:本文主要介绍Vue3组件中getCurrentInstance()获取App实例,但是返回nu... 目录vue3组件中getCurrentInstajavascriptnce()获取App实例,但是返回n

基于Java实现回调监听工具类

《基于Java实现回调监听工具类》这篇文章主要为大家详细介绍了如何基于Java实现一个回调监听工具类,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录监听接口类 Listenable实际用法打印结果首先,会用到 函数式接口 Consumer, 通过这个可以解耦回调方法,下面先写一个

使用Java将DOCX文档解析为Markdown文档的代码实现

《使用Java将DOCX文档解析为Markdown文档的代码实现》在现代文档处理中,Markdown(MD)因其简洁的语法和良好的可读性,逐渐成为开发者、技术写作者和内容创作者的首选格式,然而,许多文... 目录引言1. 工具和库介绍2. 安装依赖库3. 使用Apache POI解析DOCX文档4. 将解析

Qt中QUndoView控件的具体使用

《Qt中QUndoView控件的具体使用》QUndoView是Qt框架中用于可视化显示QUndoStack内容的控件,本文主要介绍了Qt中QUndoView控件的具体使用,具有一定的参考价值,感兴趣的... 目录引言一、QUndoView 的用途二、工作原理三、 如何与 QUnDOStack 配合使用四、自

Java字符串处理全解析(String、StringBuilder与StringBuffer)

《Java字符串处理全解析(String、StringBuilder与StringBuffer)》:本文主要介绍Java字符串处理全解析(String、StringBuilder与StringBu... 目录Java字符串处理全解析:String、StringBuilder与StringBuffer一、St

C++使用printf语句实现进制转换的示例代码

《C++使用printf语句实现进制转换的示例代码》在C语言中,printf函数可以直接实现部分进制转换功能,通过格式说明符(formatspecifier)快速输出不同进制的数值,下面给大家分享C+... 目录一、printf 原生支持的进制转换1. 十进制、八进制、十六进制转换2. 显示进制前缀3. 指