简单的学生信息管理系统

简单的学生信息管理系统

import java.sql.*;
import java.util.Scanner;public class StudentManagementSystem {private static final String URL = "jdbc:mysql://localhost:3306/test";private static final String USER = "root";private static final String PASSWORD = "root";public static void main(String[] args) {Scanner scanner = new Scanner(System.in);String input;System.out.println("\n欢迎使用学生管理系统,请登录:");while (!login(scanner)) {}do {System.out.println("\n学生管理系统");System.out.println("1. 增加学生");System.out.println("2. 删除学生");System.out.println("3. 修改学生信息");System.out.println("4. 查询学生信息");System.out.println("5. 浏览所有学生");System.out.println("0. 退出");System.out.print("请选择操作: ");input = scanner.nextLine();switch (input) {case "1":addStudent(scanner);break;case "2":deleteStudent(scanner);break;case "3":updateStudent(scanner);break;case "4":searchStudent(scanner);break;case "5":listStudents(scanner);break;case "0":System.out.println("退出系统");break;default:System.out.println("无效的输入,请重新选择。");}} while (!input.equals("0"));scanner.close();}private static boolean login(Scanner scanner) {System.out.print("请输入用户名: ");String username = scanner.nextLine();System.out.print("请输入密码: ");String password = scanner.nextLine();if ("root".equals(username) && "root".equals(password)) {System.out.println("登录成功!");return true;} else {System.out.println("用户名或密码错误!");return false;}}// 增加学生信息private static void addStudent(Scanner scanner) {Connection conn = connectDatabase();if (conn != null) {try {System.out.print("输入学生姓名: ");String name = scanner.nextLine();System.out.print("输入学生年龄: ");int age = Integer.parseInt(scanner.nextLine());System.out.print("输入学生年级: ");String grade = scanner.nextLine();String sql = "INSERT INTO students (name, age, grade) VALUES (?, ?, ?)";try (PreparedStatement stmt = conn.prepareStatement(sql)) {stmt.setString(1, name);stmt.setInt(2, age);stmt.setString(3, grade);int rowsAffected = stmt.executeUpdate();if (rowsAffected > 0) {System.out.println("学生信息添加成功!");} else {System.out.println("添加失败!");}}} catch (SQLException e) {e.printStackTrace();} finally {closeConnection(conn);}}}// 删除学生信息private static void deleteStudent(Scanner scanner) {Connection conn = connectDatabase();if (conn != null) {try {System.out.print("输入要删除的学生ID: ");int id = Integer.parseInt(scanner.nextLine());String sql = "DELETE FROM students WHERE id = ?";try (PreparedStatement stmt = conn.prepareStatement(sql)) {stmt.setInt(1, id);int rowsAffected = stmt.executeUpdate();if (rowsAffected > 0) {System.out.println("学生信息删除成功!");} else {System.out.println("删除失败,可能该学生ID不存在!");}}} catch (SQLException e) {e.printStackTrace();} finally {closeConnection(conn);}}}// 修改学生信息private static void updateStudent(Scanner scanner) {Connection conn = connectDatabase();if (conn != null) {try {System.out.print("输入要修改的学生ID: ");int id = Integer.parseInt(scanner.nextLine());System.out.print("输入新的姓名: ");String name = scanner.nextLine();System.out.print("输入新的年龄: ");int age = Integer.parseInt(scanner.nextLine());System.out.print("输入新的年级: ");String grade = scanner.nextLine();String sql = "UPDATE students SET name = ?, age = ?, grade = ? WHERE id = ?";try (PreparedStatement stmt = conn.prepareStatement(sql)) {stmt.setString(1, name);stmt.setInt(2, age);stmt.setString(3, grade);stmt.setInt(4, id);int rowsAffected = stmt.executeUpdate();if (rowsAffected > 0) {System.out.println("学生信息更新成功!");} else {System.out.println("更新失败,可能该学生ID不存在!");}}} catch (SQLException e) {e.printStackTrace();} finally {closeConnection(conn);}}}// 查询学生信息private static void searchStudent(Scanner scanner) {Connection conn = connectDatabase();if (conn != null) {try {System.out.print("输入要查询的学生ID: ");int id = Integer.parseInt(scanner.nextLine());String sql = "SELECT * FROM students WHERE id = ?";try (PreparedStatement stmt = conn.prepareStatement(sql)) {stmt.setInt(1, id);ResultSet rs = stmt.executeQuery();if (rs.next()) {int studentId = rs.getInt("id");String studentName = rs.getString("name");int studentAge = rs.getInt("age");String studentGrade = rs.getString("grade");System.out.println("学生ID: " + studentId);System.out.println("姓名: " + studentName);System.out.println("年龄: " + studentAge);System.out.println("年级: " + studentGrade);} else {System.out.println("未找到该学生信息!");}}} catch (SQLException e) {e.printStackTrace();} finally {closeConnection(conn);}}}// 浏览所有学生信息private static void listStudents(Scanner scanner) {Connection conn = connectDatabase();if (conn != null) {try {String sql = "SELECT * FROM students";try (Statement stmt = conn.createStatement()) {ResultSet rs = stmt.executeQuery(sql);while (rs.next()) {int studentId = rs.getInt("id");String studentName = rs.getString("name");int studentAge = rs.getInt("age");String studentGrade = rs.getString("grade");System.out.println("学生ID: " + studentId + ", 姓名: " + studentName + ", 年龄: " + studentAge + ", 年级: " + studentGrade);}}} catch (SQLException e) {e.printStackTrace();} finally {closeConnection(conn);}}}// 连接数据库的方法private static Connection connectDatabase() {// 这里省略了异常处理和资源关闭,实际应用中需要添加try {return DriverManager.getConnection(URL, USER, PASSWORD);} catch (SQLException e) {e.printStackTrace();return null;}}// 断开数据库连接的方法private static void closeConnection(Connection connection) {// 这里省略了异常处理,实际应用中需要添加try {if (connection != null && !connection.isClosed()) {connection.close();}} catch (SQLException e) {e.printStackTrace();}}}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/22900.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Flutter 面试题】 Assert(断言)有什么作用?什么时候有效?

【Flutter 面试题】 Assert(断言)有什么作用?什么时候有效? 文章目录 写在前面口述回答补充说明案例代码运行结果说明写在前面 🙋 关于我 ,小雨青年 👉 CSDN博客专家,GitChat专栏作者,阿里云社区专家博主,51CTO专家博主。2023博客之星TOP153。 👏🏻 正在学 Flu…

嵌入式 Linux LED 驱动开发实验学习

I.MX6U-ALPHA 开发板上的 LED 连接到 I.MX6ULL 的 GPIO1_IO03 这个引脚上,进行这个驱动开发实验之前,需要了解下地址映射。 地址映射 MMU 全称叫做 MemoryManage Unit,也就是内存管理单元。在老版本的 Linux 中要求处理器必须有 MMU&#x…

dvwa靶场的下载、配置

目录 下载 配置 连接数据库 搭建网站(可选) 配置靶场 下载 百度网盘链接:https://pan.baidu.com/s/1oK2UzKFxIIPQkhz6hD8WFQ?pwdpbb2 提取码:pbb2 迅雷链接:https://pan.xunlei.com/s/VNzHo9gXgbsk5E8tcx6Yek…

练习实践-linux启动耗时分析

练习实践-启动耗时整体概览,具体服务的启动细节 参考来源: B站up主林哥讲运维:一分钟学会:可视化查看系统启动时的性能 如何使用Linux命令查看系统的启动进程(linux查看启动进程) 解决ubuntu开机变慢&…

奇偶交换排序

奇偶交换排序(Odd-Even Transposition Sort),也称为奇偶排序(Odd-Even Sort),是一种简单的并行排序算法,主要用于并行计算环境中。该算法基于冒泡排序的思想,通过多个阶段的奇偶交换…

AcWing 841. 字符串哈希——算法基础课题解

AcWing 841. 字符串哈希 题目描述 给定一个长度为 𝑛 的字符串,再给定 𝑚 个询问,每个询问包含四个整数 𝑙1,𝑟1,𝑙2,𝑟2,请你判断[𝑙1,𝑟1] 和…

双指针法 ( 三数之和 )

题目 :给你一个整数数组 nums ,判断是否存在三元组 [nums[i], nums[j], nums[k]] 满足 i ! j、i ! k 且 j ! k ,同时还满足 nums[i] nums[j] nums[k] 0 。请 你返回所有和为 0 且不重复的三元组。 注意:答案中不可以包含重复…

Java有几种字符串拼接方式,源码如何实现,说一下它们的优缺点

在 Java 中,字符串拼接是一个非常常见的操作,但也是影响性能的一个潜在问题点。Java 提供了以下字符串拼接方式: 使用 运算符 使用 StringBuilder 或 StringBuffer 使用 String.concat() 方法 Java 8 中的 String.join() 和 StringJoiner…

代理IP类型有哪些?定义与区别

您应该对代理有了一定的了解。但是,代理服务器也有不同的类型。就其来源而言,最常见的代理服务器类型是住宅代理和数据中心代理: 1、住宅代理 住宅代理是 ISP 向房主提供的 IP 地址。它是与物理位置关联的真实 IP 地址,因此允许…

WPF中Window的外观实现及常用属性

文章目录 1. 概要2. Window的外观2.1 Window的外观组成2.2 Window的实现2.3 Window外观配置2.4 Window 的其他常用属性1. AllowsTransparency 2. WindowStartupLocation3. ShowInTaskbar4. ShowActivated5. SizeToContent6. Topmost7. WindowStyle 1. 概要 和 Android 类似, W…

小米SU7智能座舱介绍,果然有亮点!

2024 年,小米 SU7 横空出世,从开始的怀疑到发布后仅 24h 就达到了 8W 台的订单量,火到出圈的具象化。智能手机厂家造车,之前的华为做了榜样,小米作为汽车制造中又一条鲶鱼,能否给智能汽车市场带来新的契机? 小米造车可谓是各方位进行全新打造,包括座舱、底盘、智驾、车…

sentaurus节点重排

sentaurus使用时,有时候节点顺序会比较乱,为了方便更好的查看,可以对其进行重新编排,操作方法如下,右键——project——clean up 然后选中chean up 选项中的renumber the Tree,然后点击cleanup操作完成即可…

数据结构:模拟栈

数据结构&#xff1a;模拟栈 题目描述参考代码 题目描述 输入样例 10 push 5 query push 6 pop query pop empty push 4 query empty输出样例 5 5 YES 4 NO参考代码 #include <iostream>using namespace std;const int N 1000010;int m, x; int q[N]; string op; int…

ESP32S3——多线程

一、环境&#xff1a; 平台&#xff1a;arduino IDE 或 VS Code PlatformIO 皆可。 我的是后者&#xff0c;具体为&#xff1a; 框架&#xff1a;VS PlatformIO Arduino 二、硬件准备&#xff1a; 一个esp32s3 本文用到的是U0RXD&#xff08;GPIO44 &#xff09;与U0TXD…

代码随想录算法训练营第22天|二叉树

二叉树part08 235. 二叉搜索树的最近公共祖先 前序&#xff0c;利用二叉搜索的特性 /*** Definition for a binary tree node.* function TreeNode(val) {* this.val val;* this.left this.right null;* }*//*** param {TreeNode} root* param {TreeNode} p* par…

TCP的核心属性

TCP的核心属性 一: TCP的核心属性1.1: 确认应答:1.2 : 超时重传1.3 : 连接管理1.3.1 三次握手1.3.2 四次挥手 1.4 滑动窗口1.5: 流量控制:1.6 拥塞控制1.7 延时应答1.8 :捎带应答1.9: 面向字节流1.10 : 异常情况 一: TCP的核心属性 1.1: 确认应答: 保证可靠性最核心的机制 1…

基于FPGA的数字信号处理:Signed的本质和作用

基于FPGA的数字信号处理中,signed的本质和作用主要体现在对整型变量正负性的定义和运算上。以下是关于signed的详细解释: signed的本质 定义有符号数变量:在FPGA的数字信号处理中,signed关键字用于定义有符号整型变量。这意味着变量可以存储正数和负数,而不仅仅是无符号整…

《web应用技术》第十次作业

将自己的项目改造为基于vue-cli脚手架的项目&#xff0c;页面有导航&#xff0c;学会使用router。 <el-aside width"200px" style"background-color: aliceblue;"> <el-menu :default-openeds"[1]" style"background-color:rgb(1…

邦芒简历:打造你的求职利器

简历&#xff0c;是求职的敲门砖。一份精心制作的简历&#xff0c;能为你赢得宝贵的面试机会。面对求职的激烈竞争&#xff0c;大学生们该如何制作一份出色的简历呢&#xff1f; 一、简洁明了&#xff0c;突出重点 招聘人员通常没有足够的时间去仔细阅读冗长的简历。因此&…

springboot 打成jar部署到Linux环境后读取resources下面的文件

方法代码&#xff1a; ClassLoader loader Thread.currentThread().getContextClassLoader();InputStream flagInputStream loader.getResourceAsStream("static/imagesLogo/imageaaa.png");BufferedImage read;read ImageIO.read(flagInputStream);System.out.pr…