完成四则运算登陆模块,记录用户的四则运算历史得分,实现查询历史得分,使用 Java 序列化和反序列化进行持久化存储学生信息和得分情况,完整代码

时间: 2023-07-18 14:30:46 浏览: 87
ZIP

基于Java的学生管理系统,旨在提供学生信息的管理和查询功能

好的,以下是一个完整的示例代码,包括用户登录模块、四则运算练习模块以及使用 Java 序列化和反序列化进行持久化存储学生信息和得分情况的模块。 ```java import java.io.*; // 用户类,用于表示一个用户的信息 class User implements Serializable { private static final long serialVersionUID = 1L; private String username; private String password; public User(String username, String password) { this.username = username; this.password = password; } public String getUsername() { return username; } public String getPassword() { return password; } } // 题目类,用于表示一个四则运算题目 class Question implements Serializable { private static final long serialVersionUID = 1L; private String content; private int answer; public Question(String content, int answer) { this.content = content; this.answer = answer; } public String getContent() { return content; } public int getAnswer() { return answer; } // 随机生成一个四则运算题目 public static Question generateQuestion() { int num1 = (int) (Math.random() * 100); int num2 = (int) (Math.random() * 100); int operator = (int) (Math.random() * 4); String content; int answer; switch (operator) { case 0: content = num1 + " + " + num2 + " = "; answer = num1 + num2; break; case 1: content = num1 + " - " + num2 + " = "; answer = num1 - num2; break; case 2: content = num1 + " * " + num2 + " = "; answer = num1 * num2; break; case 3: content = num1 + " / " + num2 + " = "; answer = num1 / num2; break; default: content = ""; answer = 0; break; } return new Question(content, answer); } } // 得分类,用于表示一个学生的得分情况 class Score implements Serializable { private static final long serialVersionUID = 1L; private String username; private int score; public Score(String username, int score) { this.username = username; this.score = score; } public String getUsername() { return username; } public int getScore() { return score; } // 保存得分信息到文件中 public static void saveScore(Score score) throws IOException { ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(score.getUsername() + ".dat")); oos.writeObject(score); oos.close(); } // 从文件中读取得分信息 public static Score readScore(String username) throws IOException, ClassNotFoundException { ObjectInputStream ois = new ObjectInputStream(new FileInputStream(username + ".dat")); Score score = (Score) ois.readObject(); ois.close(); return score; } } // 主程序类 public class Main { private static User currentUser = null; // 当前用户 private static int currentScore = 0; // 当前得分 public static void main(String[] args) { // 显示登录界面 LoginFrame loginFrame = new LoginFrame(); loginFrame.setVisible(true); } // 用户登录 public static boolean login(String username, String password) { // 检查用户名和密码是否正确 User user = checkUser(username, password); if (user != null) { // 登录成功,记录当前用户 currentUser = user; // 显示主界面 MainFrame mainFrame = new MainFrame(); mainFrame.setVisible(true); return true; } return false; } // 用户退出 public static void logout() { // 记录得分信息到文件中 try { Score.saveScore(new Score(currentUser.getUsername(), currentScore)); } catch (IOException e) { e.printStackTrace(); } // 重置当前用户和得分 currentUser = null; currentScore = 0; // 显示登录界面 LoginFrame loginFrame = new LoginFrame(); loginFrame.setVisible(true); } // 检查用户名和密码是否正确 private static User checkUser(String username, String password) { // TODO: 实现用户验证逻辑,这里简单地返回一个固定的用户 if (username.equals("admin") && password.equals("123456")) { return new User(username, password); } return null; } // 开始练习 public static void startExercise() { // 显示题目界面 QuestionFrame questionFrame = new QuestionFrame(); questionFrame.setVisible(true); // 生成第一道题目 generateNextQuestion(); } // 生成下一道题目 public static void generateNextQuestion() { // 生成一个新的题目 Question question = Question.generateQuestion(); // 在题目界面中显示题目内容 QuestionFrame.updateQuestion(question.getContent()); } // 计算得分 public static void calculateScore(int answer) { // 获取当前题目的正确答案 int correctAnswer = Question.generateQuestion().getAnswer(); // 如果用户的答案与正确答案相同,则得分加 1 if (answer == correctAnswer) { currentScore++; } } // 查询历史得分 public static int queryScore(String username) { // 从文件中读取得分信息 try { Score score = Score.readScore(username); return score.getScore(); } catch (IOException | ClassNotFoundException e) { e.printStackTrace(); } return 0; } } // 登录界面类 class LoginFrame extends JFrame { private JTextField usernameField; private JPasswordField passwordField; public LoginFrame() { setTitle("登录"); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setSize(300, 150); setLocationRelativeTo(null); JPanel panel = new JPanel(); add(panel); panel.setLayout(null); JLabel userLabel = new JLabel("用户名:"); userLabel.setBounds(10, 10, 80, 25); panel.add(userLabel); usernameField = new JTextField(20); usernameField.setBounds(100, 10, 160, 25); panel.add(usernameField); JLabel passwordLabel = new JLabel("密码:"); passwordLabel.setBounds(10, 40, 80, 25); panel.add(passwordLabel); passwordField = new JPasswordField(20); passwordField.setBounds(100, 40, 160, 25); panel.add(passwordField); JButton loginButton = new JButton("登录"); loginButton.setBounds(60, 80, 80, 25); loginButton.addActionListener(e -> { String username = usernameField.getText(); String password = new String(passwordField.getPassword()); if (Main.login(username, password)) { dispose(); } else { JOptionPane.showMessageDialog(null, "用户名或密码错误"); } }); panel.add(loginButton); JButton cancelButton = new JButton("取消"); cancelButton.setBounds(160, 80, 80, 25); cancelButton.addActionListener(e -> { dispose(); }); panel.add(cancelButton); } } // 主界面类 class MainFrame extends JFrame { public MainFrame() { setTitle("四则运算练习"); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setSize(300, 150); setLocationRelativeTo(null); JPanel panel = new JPanel(); add(panel); panel.setLayout(null); JLabel welcomeLabel = new JLabel("欢迎你," + Main.currentUser.getUsername()); welcomeLabel.setBounds(10, 10, 200, 25); panel.add(welcomeLabel); JButton startButton = new JButton("开始练习"); startButton.setBounds(10, 40, 120, 25); startButton.addActionListener(e -> { Main.startExercise(); dispose(); }); panel.add(startButton); JButton queryButton = new JButton("查询历史得分"); queryButton.setBounds(140, 40, 140, 25); queryButton.addActionListener(e -> { int score = Main.queryScore(Main.currentUser.getUsername()); JOptionPane.showMessageDialog(null, "你的历史得分是:" + score); }); panel.add(queryButton); JButton logoutButton = new JButton("退出登录"); logoutButton.setBounds(10, 80, 120, 25); logoutButton.addActionListener(e -> { Main.logout(); dispose(); }); panel.add(logoutButton); } } // 题目界面类 class QuestionFrame extends JFrame { private static JTextArea questionArea; private JTextField answerField; public QuestionFrame() { setTitle("四则运算练习"); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setSize(300, 150); setLocationRelativeTo(null); JPanel panel = new JPanel(); add(panel); panel.setLayout(null); JLabel questionLabel = new JLabel("题目:"); questionLabel.setBounds(10, 10, 80, 25); panel.add(questionLabel); questionArea = new JTextArea(); questionArea.setBounds(100, 10, 160, 50); questionArea.setEditable(false); panel.add(questionArea); JLabel answerLabel = new JLabel("答案:"); answerLabel.setBounds(10, 70, 80, 25); panel.add(answerLabel); answerField = new JTextField(20); answerField.setBounds(100, 70, 160, 25); panel.add(answerField); JButton submitButton = new JButton("提交"); submitButton.setBounds(100, 105, 80, 25); submitButton.addActionListener(e -> { try { int answer = Integer.parseInt(answerField.getText()); Main.calculateScore(answer); Main.generateNextQuestion(); } catch (NumberFormatException ex) { JOptionPane.showMessageDialog(null, "请输入正确的数字"); } }); panel.add(submitButton); } public static void updateQuestion(String question) { questionArea.setText(question); } } ``` 在上面的代码中,我们创建了三个类:User、Question 和 Score。User 类表示一个用户的信息,Question 类表示一个四则运算题目,Score 类表示一个学生的得分情况。我们还创建了一个主程序类 Main,用于协调用户登录、四则运算练习以及得分查询等功能。 在 Main 类中,我们使用了 Java Swing 来创建了三个界面:登录界面 LoginFrame、主界面 MainFrame 和题目界面 QuestionFrame。在登录界面中,我们使用 JTextField 和 JPasswordField 来获取用户输入的用户名和密码,然后调用
阅读全文

相关推荐

最新推荐

recommend-type

Java序列化反序列化原理及漏洞解决方案

Java序列化反序列化原理及漏洞解决方案 Java序列化反序列化原理及...Java序列化反序列化原理及漏洞解决方案是Java编程语言中的一项重要机制,但同时也存在一些安全漏洞,需要开发者在使用时进行严格的安全检查和防范。
recommend-type

浅谈Java序列化和hessian序列化的差异

Java序列化和Hessian序列化的差异 Java序列化和Hessian序列化是两种常用的序列化机制,它们都可以将对象转换为字节流,以便在网络上传输。但是,两者之间有着很大的差异,今天我们就来比较一下它们的实现机制和特点...
recommend-type

基于Json序列化和反序列化通用的封装完整代码

基于Json序列化和反序列化通用的封装完整代码是指使用JsonHelper类来实现Json序列化和反序列化的功能。该类提供了多种方法来实现Json序列化和反序列化,包括使用Newtonsoft.Json和System.Runtime.Serialization.Json...
recommend-type

java 中序列化NotSerializableException问题解决办法

Java 中序列化 NotSerializableException 问题解决办法 Java 中序列化 NotSerializableException 问题是 Java 开发中常见的问题之一。 NotSerializableException 是 Java 中的一个异常,它发生在尝试序列化一个不...
recommend-type

详解java中的深拷贝和浅拷贝(clone()方法的重写、使用序列化实现真正的深拷贝)

在Java中,深拷贝可以通过序列化和反序列化来实现,这实际上是将对象转换为字节流,然后再从字节流中恢复为新的对象。在上面的代码中,`CloneUtils.clone()`方法就实现了深拷贝: ```java public class CloneUtils ...
recommend-type

平尾装配工作平台运输支撑系统设计与应用

资源摘要信息:"该压缩包文件名为‘行业分类-设备装置-用于平尾装配工作平台的运输支撑系统.zip’,虽然没有提供具体的标签信息,但通过文件标题可以推断出其内容涉及的是航空或者相关重工业领域内的设备装置。从标题来看,该文件集中讲述的是有关平尾装配工作平台的运输支撑系统,这是一种专门用于支撑和运输飞机平尾装配的特殊设备。 平尾,即水平尾翼,是飞机尾部的一个关键部件,它对于飞机的稳定性和控制性起到至关重要的作用。平尾的装配工作通常需要在一个特定的平台上进行,这个平台不仅要保证装配过程中平尾的稳定,还需要适应平尾的搬运和运输。因此,设计出一个合适的运输支撑系统对于提高装配效率和保障装配质量至关重要。 从‘用于平尾装配工作平台的运输支撑系统.pdf’这一文件名称可以推断,该PDF文档应该是详细介绍这种支撑系统的构造、工作原理、使用方法以及其在平尾装配工作中的应用。文档可能包括以下内容: 1. 支撑系统的设计理念:介绍支撑系统设计的基本出发点,如便于操作、稳定性高、强度大、适应性强等。可能涉及的工程学原理、材料学选择和整体结构布局等内容。 2. 结构组件介绍:详细介绍支撑系统的各个组成部分,包括支撑框架、稳定装置、传动机构、导向装置、固定装置等。对于每一个部件的功能、材料构成、制造工艺、耐腐蚀性以及与其他部件的连接方式等都会有详细的描述。 3. 工作原理和操作流程:解释运输支撑系统是如何在装配过程中起到支撑作用的,包括如何调整支撑点以适应不同重量和尺寸的平尾,以及如何进行运输和对接。操作流程部分可能会包含操作步骤、安全措施、维护保养等。 4. 应用案例分析:可能包含实际操作中遇到的问题和解决方案,或是对不同机型平尾装配过程的支撑系统应用案例的详细描述,以此展示系统的实用性和适应性。 5. 技术参数和性能指标:列出支撑系统的具体技术参数,如载重能力、尺寸规格、工作范围、可调节范围、耐用性和可靠性指标等,以供参考和评估。 6. 安全和维护指南:对于支撑系统的使用安全提供指导,包括操作安全、应急处理、日常维护、定期检查和故障排除等内容。 该支撑系统作为专门针对平尾装配而设计的设备,对于飞机制造企业来说,掌握其详细信息是提高生产效率和保障产品质量的重要一环。同时,这种支撑系统的设计和应用也体现了现代工业在专用设备制造方面追求高效、安全和精确的趋势。"
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

MATLAB遗传算法探索:寻找随机性与确定性的平衡艺术

![MATLAB多种群遗传算法优化](https://img-blog.csdnimg.cn/39452a76c45b4193b4d88d1be16b01f1.png) # 1. 遗传算法的基本概念与起源 遗传算法(Genetic Algorithm, GA)是一种模拟自然选择和遗传学机制的搜索优化算法。起源于20世纪60年代末至70年代初,由John Holland及其学生和同事们在研究自适应系统时首次提出,其理论基础受到生物进化论的启发。遗传算法通过编码一个潜在解决方案的“基因”,构造初始种群,并通过选择、交叉(杂交)和变异等操作模拟生物进化过程,以迭代的方式不断优化和筛选出最适应环境的
recommend-type

如何在S7-200 SMART PLC中使用MB_Client指令实现Modbus TCP通信?请详细解释从连接建立到数据交换的完整步骤。

为了有效地掌握S7-200 SMART PLC中的MB_Client指令,以便实现Modbus TCP通信,建议参考《S7-200 SMART Modbus TCP教程:MB_Client指令与功能码详解》。本教程将引导您了解从连接建立到数据交换的整个过程,并详细解释每个步骤中的关键点。 参考资源链接:[S7-200 SMART Modbus TCP教程:MB_Client指令与功能码详解](https://wenku.csdn.net/doc/119yes2jcm?spm=1055.2569.3001.10343) 首先,确保您的S7-200 SMART CPU支持开放式用户通
recommend-type

MAX-MIN Ant System:用MATLAB解决旅行商问题

资源摘要信息:"Solve TSP by MMAS: Using MAX-MIN Ant System to solve Traveling Salesman Problem - matlab开发" 本资源为解决经典的旅行商问题(Traveling Salesman Problem, TSP)提供了一种基于蚁群算法(Ant Colony Optimization, ACO)的MAX-MIN蚁群系统(MAX-MIN Ant System, MMAS)的Matlab实现。旅行商问题是一个典型的优化问题,要求找到一条最短的路径,让旅行商访问每一个城市一次并返回起点。这个问题属于NP-hard问题,随着城市数量的增加,寻找最优解的难度急剧增加。 MAX-MIN Ant System是一种改进的蚁群优化算法,它在基本的蚁群算法的基础上,对信息素的更新规则进行了改进,以期避免过早收敛和局部最优的问题。MMAS算法通过限制信息素的上下界来确保算法的探索能力和避免过早收敛,它在某些情况下比经典的蚁群系统(Ant System, AS)和带有局部搜索的蚁群系统(Ant Colony System, ACS)更为有效。 在本Matlab实现中,用户可以通过调用ACO函数并传入一个TSP问题文件(例如"filename.tsp")来运行MMAS算法。该问题文件可以是任意的对称或非对称TSP实例,用户可以从特定的网站下载多种标准TSP问题实例,以供测试和研究使用。 使用此资源的用户需要注意,虽然该Matlab代码可以免费用于个人学习和研究目的,但若要用于商业用途,则需要联系作者获取相应的许可。作者的电子邮件地址为***。 此外,压缩包文件名为"MAX-MIN%20Ant%20System.zip",该压缩包包含Matlab代码文件和可能的示例数据文件。用户在使用之前需要将压缩包解压,并将文件放置在Matlab的适当工作目录中。 为了更好地理解和应用该资源,用户应当对蚁群优化算法有初步了解,尤其是对MAX-MIN蚁群系统的基本原理和运行机制有所掌握。此外,熟悉Matlab编程环境和拥有一定的编程经验将有助于用户根据个人需求修改和扩展算法。 在实际应用中,用户可以根据问题规模调整MMAS算法的参数,如蚂蚁数量、信息素蒸发率、信息素增量等,以获得最优的求解效果。此外,也可以结合其他启发式或元启发式算法,如遗传算法、模拟退火等,来进一步提高算法的性能。 总之,本资源为TSP问题的求解提供了一种有效的算法框架,且Matlab作为编程工具的易用性和强大的计算能力,使得该资源成为算法研究人员和工程技术人员的有力工具。通过本资源的应用,用户将能够深入探索并实现蚁群优化算法在实际问题中的应用,为解决复杂的优化问题提供一种新的思路和方法。