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实现MD5加密的四种方式

《Java实现MD5加密的四种方式》MD5是一种广泛使用的哈希算法,其输出结果是一个128位的二进制数,通常以32位十六进制数的形式表示,MD5的底层实现涉及多个复杂的步骤和算法,本文给大家介绍了Ja... 目录MD5介绍Java 中实现 MD5 加密方式方法一:使用 MessageDigest方法二:使用

Java中的runnable 和 callable 区别解析

《Java中的runnable和callable区别解析》Runnable接口用于定义不需要返回结果的任务,而Callable接口可以返回结果并抛出异常,通常与Future结合使用,Runnab... 目录1. Runnable接口1.1 Runnable的定义1.2 Runnable的特点1.3 使用Ru

Java中Runnable和Callable的区别和联系及使用场景

《Java中Runnable和Callable的区别和联系及使用场景》Java多线程有两个重要的接口,Runnable和Callable,分别提供一个run方法和call方法,二者是有较大差异的,本文... 目录一、Runnable使用场景二、Callable的使用场景三、关于Future和FutureTa

Spring 中 BeanFactoryPostProcessor 的作用和示例源码分析

《Spring中BeanFactoryPostProcessor的作用和示例源码分析》Spring的BeanFactoryPostProcessor是容器初始化的扩展接口,允许在Bean实例化前... 目录一、概览1. 核心定位2. 核心功能详解3. 关键特性二、Spring 内置的 BeanFactory

Spring组件初始化扩展点BeanPostProcessor的作用详解

《Spring组件初始化扩展点BeanPostProcessor的作用详解》本文通过实战案例和常见应用场景详细介绍了BeanPostProcessor的使用,并强调了其在Spring扩展中的重要性,感... 目录一、概述二、BeanPostProcessor的作用三、核心方法解析1、postProcessB

Java导入、导出excel用法步骤保姆级教程(附封装好的工具类)

《Java导入、导出excel用法步骤保姆级教程(附封装好的工具类)》:本文主要介绍Java导入、导出excel的相关资料,讲解了使用Java和ApachePOI库将数据导出为Excel文件,包括... 目录前言一、引入Apache POI依赖二、用法&步骤2.1 创建Excel的元素2.3 样式和字体2.

Java实现将Markdown转换为纯文本

《Java实现将Markdown转换为纯文本》这篇文章主要为大家详细介绍了两种在Java中实现Markdown转纯文本的主流方法,文中的示例代码讲解详细,大家可以根据需求选择适合的方案... 目录方法一:使用正则表达式(轻量级方案)方法二:使用 Flexmark-Java 库(专业方案)1. 添加依赖(Ma

使用EasyExcel实现简单的Excel表格解析操作

《使用EasyExcel实现简单的Excel表格解析操作》:本文主要介绍如何使用EasyExcel完成简单的表格解析操作,同时实现了大量数据情况下数据的分次批量入库,并记录每条数据入库的状态,感兴... 目录前言固定模板及表数据格式的解析实现Excel模板内容对应的实体类实现AnalysisEventLis

使用国内镜像源优化pip install下载的方法步骤

《使用国内镜像源优化pipinstall下载的方法步骤》在Python开发中,pip是一个不可或缺的工具,用于安装和管理Python包,然而,由于默认的PyPI服务器位于国外,国内用户在安装依赖时可... 目录引言1. 为什么需要国内镜像源?2. 常用的国内镜像源3. 临时使用国内镜像源4. 永久配置国内镜

Spring Boot拦截器Interceptor与过滤器Filter详细教程(示例详解)

《SpringBoot拦截器Interceptor与过滤器Filter详细教程(示例详解)》本文详细介绍了SpringBoot中的拦截器(Interceptor)和过滤器(Filter),包括它们的... 目录Spring Boot拦截器(Interceptor)与过滤器(Filter)详细教程1. 概述1