java五子棋小游戏含免费源码

简介: java五子棋小游戏含免费源码

游戏截图:

image.png


看一下运行效果

20210120221738837.gif


这里我使用的开发工具是Eclipse


主要代码Main.java:

public class Main extends JFrame{
  /*
   * 用户登录
   */
  private static final long servialVersionUID = 1L;
  final JLabel logoLabel = new JLabel("开心五子棋");
  final JLabel logo = new JLabel();
  final JButton loginButton = new JButton("登陆");
  final JLabel registerLabel = new JLabel("立即注册");
  final JLabel userLabel = new JLabel("账号:");
  final JLabel passwordLabel = new JLabel("密码:");
  final static JTextField userjt = new JTextField(11);
  final JPasswordField passwordjt = new JPasswordField(11);
  final JCheckBox rememberPasswordjcb = new JCheckBox();
  final JLabel rememberPasswordjl = new JLabel("记住密码");
  final JCheckBox automaticLoginjcb = new JCheckBox();
  final JLabel automaticLoginjl = new JLabel("自动登录");
  final JLabel promptPasswordFalse = new JLabel("密码错误!");
  final JLabel promptRegister = new JLabel("该账号还未注册!");
  final JLabel promptUserNameEmpty = new JLabel("请输入账号!");
  final JLabel prompPasswordEmpty = new JLabel("请输入密码!");
  final Color color = new Color(255, 218, 185);
  final FileOperation read = new FileOperation();//创建文件对象
  final FileOperation f = new FileOperation();
  public Main() {
    setTitle("开心五子棋");
    setBounds(200, 200, 500, 500);
    setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    setVisible(true);
    //基本布局设置
    SpringLayout springLayout = new SpringLayout();//使用弹簧布局管理器
    Container c = getContentPane();//创建容器
    c.setBackground(new Color(255, 218, 185));
    c.setLayout(springLayout);
    userjt.setFont(new Font("微软雅黑", 0, 18 ));
    userjt.setText(Register.userName);
    passwordjt.setFont(new Font("微软雅黑", 0, 18));
    passwordjt.setText(Register.password);
    logoLabel.setFont(new Font("微软雅黑", 1, 48));
    logoLabel.setForeground(Color.pink);
    ImageIcon logoimage = new ImageIcon(Main.class.getResource("/image/logo5.jpg"));
    logoimage.setImage(logoimage.getImage().getScaledInstance(260, 130, Image.SCALE_DEFAULT));
    logo.setIcon(logoimage);
    userLabel.setFont(new Font("微软雅黑", 1, 20));
    passwordLabel.setFont(new Font("微软雅黑", 1, 20));
    rememberPasswordjl.setFont(new Font("微软雅黑", 0, 14));
    rememberPasswordjl.setForeground(Color.gray);
    automaticLoginjl.setFont(new Font("微软雅黑", 0, 14));
    automaticLoginjl.setForeground(Color.gray);
    loginButton.setFont(new Font("微软雅黑", 1, 16));
    registerLabel.setFont(new Font("微软雅黑", 1, 13));
    registerLabel.setForeground(Color.gray);
    promptPasswordFalse.setFont(new Font("微软雅黑", 0, 13));
    promptPasswordFalse.setForeground(Color.red);
    promptUserNameEmpty.setFont(new Font("微软雅黑", 0, 13));
    promptUserNameEmpty.setForeground(Color.red);
    prompPasswordEmpty.setFont(new Font("微软雅黑", 0, 13));
    prompPasswordEmpty.setForeground(Color.red);
    promptRegister.setFont(new Font("微软雅黑", 0, 13));
      promptRegister.setForeground(Color.red);
      rememberPasswordjcb.setBackground(new Color(255, 218, 185));
      automaticLoginjcb.setBackground(new Color(255, 218, 185));
      c.add(logo);//首页图标
      springLayout.putConstraint(springLayout.NORTH, logo, 40, springLayout.NORTH, c);
      springLayout.putConstraint(springLayout.WEST, logo, 115, springLayout.WEST, c);
    c.add(logoLabel);//标题“开心五子棋”
    springLayout.putConstraint(springLayout.NORTH, logoLabel, 100, springLayout.NORTH, c);
    springLayout.putConstraint(springLayout.WEST, logoLabel, 120, springLayout.WEST, c);
    logoLabel.setVisible(false);
    c.add(userLabel);//用户名
    springLayout.putConstraint(springLayout.NORTH, userLabel, 35, springLayout.SOUTH, logoLabel);
    springLayout.putConstraint(springLayout.WEST, userLabel, 110, springLayout.WEST, c);
    c.add(userjt);
    springLayout.putConstraint(springLayout.NORTH, userjt, 35, springLayout.SOUTH, logoLabel);
    springLayout.putConstraint(springLayout.WEST, userjt, 10, springLayout.EAST, userLabel);
    c.add(passwordLabel);//密码
    springLayout.putConstraint(springLayout.NORTH, passwordLabel, 10, springLayout.SOUTH, userLabel);
    springLayout.putConstraint(springLayout.WEST, passwordLabel, 110, springLayout.WEST, c);
    c.add(passwordjt);
    springLayout.putConstraint(springLayout.NORTH, passwordjt, 10, springLayout.SOUTH, userjt);
    springLayout.putConstraint(springLayout.WEST, passwordjt, 10, springLayout.EAST, passwordLabel);
    c.add(rememberPasswordjcb);//复选框
    springLayout.putConstraint(springLayout.NORTH, rememberPasswordjcb, 10, springLayout.SOUTH, passwordLabel);
    springLayout.putConstraint(springLayout.WEST, rememberPasswordjcb, 175, springLayout.WEST, c);
    c.add(rememberPasswordjl);
    springLayout.putConstraint(springLayout.NORTH, rememberPasswordjl, 10, springLayout.SOUTH, passwordjt);
    springLayout.putConstraint(springLayout.WEST, rememberPasswordjl, 5, springLayout.EAST, rememberPasswordjcb);
    c.add(automaticLoginjcb);
    springLayout.putConstraint(springLayout.NORTH, automaticLoginjcb, 10, springLayout.SOUTH, passwordjt);
    springLayout.putConstraint(springLayout.WEST, automaticLoginjcb, 30, springLayout.EAST, rememberPasswordjl);
    c.add(automaticLoginjl);
    springLayout.putConstraint(springLayout.NORTH, automaticLoginjl, 10, springLayout.SOUTH, passwordjt);
    springLayout.putConstraint(springLayout.WEST, automaticLoginjl, 5, springLayout.EAST, automaticLoginjcb);
    c.add(loginButton);//登陆按钮
    springLayout.putConstraint(springLayout.NORTH, loginButton, 20, springLayout.SOUTH, rememberPasswordjl);
    springLayout.putConstraint(springLayout.WEST, loginButton, 110, springLayout.WEST, c);
    c.add(registerLabel);//注册按钮
    springLayout.putConstraint(springLayout.NORTH, registerLabel, 5, springLayout.SOUTH, loginButton);
    springLayout.putConstraint(springLayout.WEST, registerLabel, 320, springLayout.WEST, c);
    c.add(promptRegister);//账号未注册提示
    promptRegister.setVisible(false);
      springLayout.putConstraint(springLayout.NORTH, promptRegister, 41, springLayout.SOUTH, logoLabel);
    springLayout.putConstraint(springLayout.WEST, promptRegister, 5, springLayout.EAST, userjt);
    c.add(promptUserNameEmpty);//请输入账号
    promptUserNameEmpty.setVisible(false);
      springLayout.putConstraint(springLayout.NORTH, promptUserNameEmpty, 41, springLayout.SOUTH, logoLabel);
    springLayout.putConstraint(springLayout.WEST, promptUserNameEmpty, 5, springLayout.EAST, userjt);
    c.add(promptPasswordFalse);//密码错误提示
    promptPasswordFalse.setVisible(false);
    springLayout.putConstraint(springLayout.NORTH, promptPasswordFalse, 20, springLayout.SOUTH, promptRegister);
    springLayout.putConstraint(springLayout.WEST, promptPasswordFalse, 5, springLayout.EAST, passwordjt);
    c.add(prompPasswordEmpty);//密码为空提示
    prompPasswordEmpty.setVisible(false);
    springLayout.putConstraint(springLayout.NORTH, prompPasswordEmpty, 20, springLayout.SOUTH, promptRegister);
    springLayout.putConstraint(springLayout.WEST, prompPasswordEmpty, 5, springLayout.EAST, passwordjt);
    //设置文本框鼠标点击事件
    userjt.addMouseListener(new MouseAdapter() {//文本框
      public void mouseClicked(MouseEvent e) {
        userjt.setText("");
      }
    });
    passwordjt.addMouseListener(new MouseAdapter() {//密码框
      public void mouseClicked(MouseEvent e) {
        passwordjt.setText("");
      }
    });
    //设置登陆按钮单击事件
    loginButton.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        String userName = userjt.getText().trim();//获取用户输入的账号和密码
        String Password = new String(passwordjt.getPassword()).trim();
        //判断账号和密码
          if(userName.length() != 0) {//用户名不为空
            promptUserNameEmpty.setVisible(false);//关闭账号为空显示
            if(Password.length() != 0) {//密码不为空
              if(f.readData("user.xls", userName) && Password.equals(f.backData("user.xls", userName, "password"))) {//用户输入的账号和密码正确
              promptRegister.setVisible(false);//隐藏提示信息
              promptPasswordFalse.setVisible(false);
              prompPasswordEmpty.setVisible(false);
              loginButton.setText("                登 陆 中...               ");
              new Chessboard();//跳转到五子棋棋盘页面
              dispose();//销毁当前页面
            }
              else if( f.readData("user.xls", userName) && !Password.equals(f.backData("user.xls", userName, "password"))) {//用户输入密码错误
              promptPasswordFalse.setVisible(true);//显示密码错误提示
              promptRegister.setVisible(false);
              prompPasswordEmpty.setVisible(false);
              passwordjt.setText("");//密码框清空
              passwordjt.requestFocus();//光标定位到密码框
            }else {//账号还未注册
              promptRegister.setVisible(true);
                promptPasswordFalse.setVisible(false);
              prompPasswordEmpty.setVisible(false);
            }
              }
              else {//密码为空
                if(userName.equals("admin")) {//用户名已经注册, 提示输入密码
                  prompPasswordEmpty.setVisible(true);
                  promptUserNameEmpty.setVisible(false);
                  promptRegister.setVisible(false);
                promptPasswordFalse.setVisible(false);
                }else {//用户名未注册
                  prompPasswordEmpty.setVisible(false);
                  promptUserNameEmpty.setVisible(false);
                  promptRegister.setVisible(true);
                promptPasswordFalse.setVisible(false);
                }
              }
          }else {//用户名为空
            promptUserNameEmpty.setVisible(true);//提示输入账号
            promptRegister.setVisible(false);
            promptPasswordFalse.setVisible(false);
            prompPasswordEmpty.setVisible(false);
            passwordjt.setText("");//将密码框置为空
            if(Password.length() == 0) {//密码为空
              prompPasswordEmpty.setVisible(true);
              promptRegister.setVisible(false);
              promptPasswordFalse.setVisible(false);
            }
          }
      }
    });
    //注册标签监听器
    registerLabel.addMouseListener(new MouseListener() {
      public void mouseClicked(MouseEvent e) {
                dispose();
        new Register();
      }
      public void mouseEntered(MouseEvent e) {
        registerLabel.setForeground(Color.red);;
      }
      public void mouseExited(MouseEvent e) {
          registerLabel.setForeground(Color.black);
      }
      public void mousePressed(MouseEvent e) {}
      public void mouseReleased(MouseEvent e) {}
    });
  }
  public static void main(String[] args) {
    // TODO 自动生成的方法存根
        new Main();
  }
}




目录
相关文章
|
18天前
|
XML Java 编译器
Java注解的底层源码剖析与技术认识
Java注解(Annotation)是Java 5引入的一种新特性,它提供了一种在代码中添加元数据(Metadata)的方式。注解本身并不是代码的一部分,它们不会直接影响代码的执行,但可以在编译、类加载和运行时被读取和处理。注解为开发者提供了一种以非侵入性的方式为代码提供额外信息的手段,这些信息可以用于生成文档、编译时检查、运行时处理等。
55 7
|
1月前
|
数据采集 人工智能 Java
Java产科专科电子病历系统源码
产科专科电子病历系统,全结构化设计,实现产科专科电子病历与院内HIS、LIS、PACS信息系统、区域妇幼信息平台的三级互联互通,系统由门诊系统、住院系统、数据统计模块三部分组成,它管理了孕妇从怀孕开始到生产结束42天一系列医院保健服务信息。
31 4
|
1月前
|
监控 Java 应用服务中间件
高级java面试---spring.factories文件的解析源码API机制
【11月更文挑战第20天】Spring Boot是一个用于快速构建基于Spring框架的应用程序的开源框架。它通过自动配置、起步依赖和内嵌服务器等特性,极大地简化了Spring应用的开发和部署过程。本文将深入探讨Spring Boot的背景历史、业务场景、功能点以及底层原理,并通过Java代码手写模拟Spring Boot的启动过程,特别是spring.factories文件的解析源码API机制。
76 2
|
11天前
|
存储 JavaScript 前端开发
基于 SpringBoot 和 Vue 开发校园点餐订餐外卖跑腿Java源码
一个非常实用的校园外卖系统,基于 SpringBoot 和 Vue 的开发。这一系统源于黑马的外卖案例项目 经过站长的进一步改进和优化,提供了更丰富的功能和更高的可用性。 这个项目的架构设计非常有趣。虽然它采用了SpringBoot和Vue的组合,但并不是一个完全分离的项目。 前端视图通过JS的方式引入了Vue和Element UI,既能利用Vue的快速开发优势,
67 13
|
24天前
|
缓存 监控 Java
Java线程池提交任务流程底层源码与源码解析
【11月更文挑战第30天】嘿,各位技术爱好者们,今天咱们来聊聊Java线程池提交任务的底层源码与源码解析。作为一个资深的Java开发者,我相信你一定对线程池并不陌生。线程池作为并发编程中的一大利器,其重要性不言而喻。今天,我将以对话的方式,带你一步步深入线程池的奥秘,从概述到功能点,再到背景和业务点,最后到底层原理和示例,让你对线程池有一个全新的认识。
51 12
|
19天前
|
JavaScript 安全 Java
java版药品不良反应智能监测系统源码,采用SpringBoot、Vue、MySQL技术开发
基于B/S架构,采用Java、SpringBoot、Vue、MySQL等技术自主研发的ADR智能监测系统,适用于三甲医院,支持二次开发。该系统能自动监测全院患者药物不良反应,通过移动端和PC端实时反馈,提升用药安全。系统涵盖规则管理、监测报告、系统管理三大模块,确保精准、高效地处理ADR事件。
|
1月前
|
人工智能 监控 数据可视化
Java智慧工地信息管理平台源码 智慧工地信息化解决方案SaaS源码 支持二次开发
智慧工地系统是依托物联网、互联网、AI、可视化建立的大数据管理平台,是一种全新的管理模式,能够实现劳务管理、安全施工、绿色施工的智能化和互联网化。围绕施工现场管理的人、机、料、法、环五大维度,以及施工过程管理的进度、质量、安全三大体系为基础应用,实现全面高效的工程管理需求,满足工地多角色、多视角的有效监管,实现工程建设管理的降本增效,为监管平台提供数据支撑。
42 3
|
21天前
|
人工智能 移动开发 安全
家政上门系统用户端、阿姨端源码,java家政管理平台源码
家政上门系统基于互联网技术,整合大数据分析、AI算法和现代通信技术,提供便捷高效的家政服务。涵盖保洁、月嫂、烹饪等多元化服务,支持多终端访问,具备智能匹配、在线支付、订单管理等功能,确保服务透明、安全,适用于家庭生活的各种需求场景,推动家政市场规范化发展。
|
1月前
|
运维 自然语言处理 供应链
Java云HIS医院管理系统源码 病案管理、医保业务、门诊、住院、电子病历编辑器
通过门诊的申请,或者直接住院登记,通过”护士工作站“分配患者,完成后,进入医生患者列表,医生对应开具”长期医嘱“和”临时医嘱“,并在电子病历中,记录病情。病人出院时,停止长期医嘱,开具出院医嘱。进入出院审核,审核医嘱与住院通过后,病人结清缴费,完成出院。
94 3
|
1月前
|
JavaScript Java 项目管理
Java毕设学习 基于SpringBoot + Vue 的医院管理系统 持续给大家寻找Java毕设学习项目(附源码)
基于SpringBoot + Vue的医院管理系统,涵盖医院、患者、挂号、药物、检查、病床、排班管理和数据分析等功能。开发工具为IDEA和HBuilder X,环境需配置jdk8、Node.js14、MySQL8。文末提供源码下载链接。