Use java's swing component to draw the table, realize the functions of "add", "delete", "save" and "exit", and connect it to the mysql database.
You can extract the data from the table in the database and display it on the form containing the table, or you can write the modified content in the table into the database table.
I used two classes to implement the above functions, one of which is MyFrame and the other is PutinStorage.
The specific code is as follows (the following codes are complete codes and have been successfully tested):
PutinStorage class:
import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.ResultSetMetaData; import java.sql.SQLException; import java.util.Vector; import javax.swing.JOptionPane; public class PutinStorage { // 得到数据库表数据 public static Vector getRows(){ String sql_url = "jdbc:mysql://localhost:3306/haha"; //数据库路径(一般都是这样写),test是数据库名称 String name = "root"; //用户名 String password = "123456"; //密码 Connection conn; PreparedStatement preparedStatement = null; Vector rows = null; Vector columnHeads = null; try { Class.forName("com.mysql.jdbc.Driver"); //连接驱动 conn = DriverManager.getConnection(sql_url, name, password); //连接数据库 // if(!conn.isClosed()) // System.out.println("成功连接数据库"); preparedStatement = conn.prepareStatement("select * from aa"); ResultSet result1 = preparedStatement.executeQuery(); if(result1.wasNull()) JOptionPane.showMessageDialog(null, "结果集中无记录"); rows = new Vector(); ResultSetMetaData rsmd = result1.getMetaData(); while(result1.next()){ rows.addElement(getNextRow(result1,rsmd)); } } catch (ClassNotFoundException e) { // TODO Auto-generated catch block System.out.println("未成功加载驱动。"); e.printStackTrace(); } catch (SQLException e) { // TODO Auto-generated catch block System.out.println("未成功打开数据库。"); e.printStackTrace(); } return rows; } // 得到数据库表头 public static Vector getHead(){ String sql_url = "jdbc:mysql://localhost:3306/haha"; //数据库路径(一般都是这样写),test是数据库名称 String name = "root"; //用户名 String password = "123456"; //密码 Connection conn; PreparedStatement preparedStatement = null; Vector columnHeads = null; try { Class.forName("com.mysql.jdbc.Driver"); //连接驱动 conn = DriverManager.getConnection(sql_url, name, password); //连接数据库 // if(!conn.isClosed()) // System.out.println("成功连接数据库"); preparedStatement = conn.prepareStatement("select * from aa"); ResultSet result1 = preparedStatement.executeQuery(); boolean moreRecords = result1.next(); if(!moreRecords) JOptionPane.showMessageDialog(null, "结果集中无记录"); columnHeads = new Vector(); ResultSetMetaData rsmd = result1.getMetaData(); for(int i = 1; i <p><strong>MyFrame class : </strong></p><pre class="brush:php;toolbar:false">import java.awt.BorderLayout; import java.awt.FlowLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.SQLException; import java.util.Vector; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTable; import javax.swing.table.DefaultTableModel; import per.tushu.storage.PutinStorage; public class MyFrame extends JFrame{ DefaultTableModel tableModel; // 默认显示的表格 JButton add,del,exit,save; // 各处理按钮 JTable table; // 表格 JPanel panelUP; //增加信息的面板 // 构造函数 public MyFrame(){ this.setBounds(300, 200, 600, 450); // 设置窗体大小 this.setTitle("测试"); // 设置窗体名称 this.setLayout(new BorderLayout()); // 设置窗体的布局方式 // 新建各按钮组件 add = new JButton("增加"); del = new JButton("删除"); save = new JButton("保存"); exit = new JButton("退出"); panelUP = new JPanel(); // 新建按钮组件面板 panelUP.setLayout(new FlowLayout(FlowLayout.LEFT)); // 设置面板的布局方式 // 将各按钮组件依次添加到面板中 panelUP.add(add); panelUP.add(del); panelUP.add(save); panelUP.add(exit); // 取得haha数据库的aa表的各行数据 Vector rowData = PutinStorage.getRows(); // 取得haha数据库的aa表的表头数据 Vector columnNames = PutinStorage.getHead(); // 新建表格 tableModel = new DefaultTableModel(rowData,columnNames); table = new JTable(tableModel); JScrollPane s = new JScrollPane(table); // 将面板和表格分别添加到窗体中 this.add(panelUP,BorderLayout.NORTH); this.add(s); // 事件处理 MyEvent(); this.setVisible(true); // 显示窗体 this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // 设置窗体可关闭 } // 事件处理 public void MyEvent(){ // 增加 add.addActionListener(new ActionListener(){ @Override public void actionPerformed(ActionEvent arg0) { // 增加一行空白区域 tableModel.addRow(new Vector()); } }); // 删除 del.addActionListener(new ActionListener(){ @Override public void actionPerformed(ActionEvent arg0) { // TODO Auto-generated method stub // 删除指定行 int rowcount = table.getSelectedRow(); if(rowcount >= 0){ tableModel.removeRow(rowcount); } } }); /** * 保存 * 我的解决办法是直接将aa表中的全部数据删除, * 将表格中的所有内容获取到, * 然后将表格数据重新写入aa表 */ save.addActionListener(new ActionListener(){ @Override public void actionPerformed(ActionEvent e) { int column = table.getColumnCount(); // 表格列数 int row = table.getRowCount(); // 表格行数 // value数组存放表格中的所有数据 String[][] value = new String[row][column]; for(int i = 0; i <p><strong>When executing the above code, the initially displayed form is as follows: </strong></p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/image/697/529/372/1558093588142542.png?x-oss-process=image/resize,p_40" class="lazy" title="1558093588142542.png" alt="How to display mysql in java"></p><p><strong> Click the Add button and write the content that needs to be added (I added it three times) as shown below: </strong></p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/image/488/336/216/1558093605391393.png?x-oss-process=image/resize,p_40" class="lazy" title="1558093605391393.png" alt="How to display mysql in java"></p><p><strong>Click the Delete button to delete the specified row (I deleted Lines 2 and 4), as shown below: </strong></p><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/image/191/581/869/1558093624953964.png?x-oss-process=image/resize,p_40" class="lazy" title="1558093624953964.png" alt="How to display mysql in java"></p><p>Click the save button and you will find that the window is also closed. You can re-execute the code and you will find that the table page that appears is the same as the picture above. </p><p>Click the exit button to close the window. </p>
The above is the detailed content of How to display mysql in java. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
