Java Swing猜英文单词游戏(java+面向对象编程+swing+awt+io流)

简介: Java Swing猜英文单词游戏(java+面向对象编程+swing+awt+io流)

一、直接上运行效果

猜测成功的界面:

猜测失败的界面:

二、技术栈

java+面向对象编程+swing+awt+io流

三、项目结构

四、部分代码

主程序入口类 WordleApp.java

/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package wordlegame;
import java.io.File;
import java.util.ArrayList;
import java.util.Random;
import java.util.Scanner;
public class WordleApp {
    public static void main(String[] args) {
        try{
            ArrayList<String> CommonWords = new ArrayList<>();  // Array list to store words.
            int i = 0;
            File myObj = new File("common1.txt");           //Read words from test file
            Scanner myReader = new Scanner(myObj);        // Scanner object to scan the input file.
            while (myReader.hasNextLine()) {              // While loop till the end of text file.
              String data = myReader.nextLine();          // Read each line from text file one by one.
              CommonWords.add(data.toLowerCase().trim());       // Add words one-by-one in the array list.
            }
            myReader.close();
            ArrayList<String> Words = new ArrayList<>();
            myObj = new File("words1.txt");           //Read words from test file
            myReader = new Scanner(myObj);        // Scanner object to scan the input file.
            while (myReader.hasNextLine()) {              // While loop till the end of text file.
              String data = myReader.nextLine();          // Read each line from text file one by one.
              Words.add(data.toLowerCase().trim());       // Add words one-by-one in the array list.
            }
            myReader.close();
            Random rand = new Random();                   //Create instance of random to get random number form the list.    
            int upperbound = CommonWords.size()-1;              // set the upperlimit for the random number to be generated.
            int int_random = rand.nextInt(upperbound);    // Generate random number.
            String actualWord =CommonWords.get(int_random);     // Get word form the list.
            System.out.println("Your have total 6 attempts to predict the word"); 
                System.err.println(actualWord);   // actual word uncomment the line if want to keep track.
            WordleModel m = new WordleModel(false,0,0,actualWord,"",Words,false,false);  //Initialize model.
            WordleView v = new WordleView(); //Create instance of View.
            WordleController c = new WordleController(m, v); //Create instance of controller.
            c.initController(); //Initialize controller.
            System.out.println(actualWord);
            System.out.println();
        }
        catch(Exception ex){
            System.out.println(ex);
        }
       }
}

Indexes.java类

/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package wordlegame;
import java.awt.Color;
public class Indexes{
        public int index;
        public Color color;
        public Indexes(int index, Color color){
            this.index = index;
            this.color = color;
        }
    }

五、源码地址

https://download.csdn.net/download/weixin_43860634/87784529


相关文章
|
3月前
|
Java 开发者
在Java面向对象编程的广阔海洋中,多态犹如一股深邃的潜流,它推动着代码从单一走向多元,从僵化迈向灵活。
在Java面向对象编程的广阔海洋中,多态犹如一股深邃的潜流,它推动着代码从单一走向多元,从僵化迈向灵活。
40 7
|
3月前
|
Java 开发者
那些年,我们一同踏入Java编程的大门,多态,这个充满魔法的名字,曾无数次点亮我们探索面向对象编程的热情。
那些年,我们一同踏入Java编程的大门,多态,这个充满魔法的名字,曾无数次点亮我们探索面向对象编程的热情。
47 5
|
3月前
|
Java 程序员
Java中的继承和多态:理解面向对象编程的核心概念
【8月更文挑战第22天】在Java的世界中,继承和多态不仅仅是编程技巧,它们是构建可维护、可扩展软件架构的基石。通过本文,我们将深入探讨这两个概念,并揭示它们如何共同作用于面向对象编程(OOP)的实践之中。你将了解继承如何简化代码重用,以及多态如何为程序提供灵活性和扩展性。让我们启程,探索Java语言中这些强大特性的秘密。
|
1月前
|
存储 缓存 Java
java基础:IO流 理论与代码示例(详解、idea设置统一utf-8编码问题)
这篇文章详细介绍了Java中的IO流,包括字符与字节的概念、编码格式、File类的使用、IO流的分类和原理,以及通过代码示例展示了各种流的应用,如节点流、处理流、缓存流、转换流、对象流和随机访问文件流。同时,还探讨了IDEA中设置项目编码格式的方法,以及如何处理序列化和反序列化问题。
67 1
java基础:IO流 理论与代码示例(详解、idea设置统一utf-8编码问题)
|
1月前
|
开发框架 IDE Java
java制作游戏,如何使用libgdx,入门级别教学
本文是一篇入门级教程,介绍了如何使用libgdx游戏开发框架创建一个简单的游戏项目,包括访问libgdx官网、设置项目、下载项目生成工具,并在IDE中运行生成的项目。
46 1
java制作游戏,如何使用libgdx,入门级别教学
|
1月前
|
Java 数据处理 开发者
揭秘Java IO流:字节流与字符流的神秘面纱!
揭秘Java IO流:字节流与字符流的神秘面纱!
32 1
|
1月前
|
自然语言处理 Java 数据处理
Java IO流全解析:字节流和字符流的区别与联系!
Java IO流全解析:字节流和字符流的区别与联系!
72 1
|
2月前
|
安全 Java API
【Java面试题汇总】Java基础篇——String+集合+泛型+IO+异常+反射(2023版)
String常量池、String、StringBuffer、Stringbuilder有什么区别、List与Set的区别、ArrayList和LinkedList的区别、HashMap底层原理、ConcurrentHashMap、HashMap和Hashtable的区别、泛型擦除、ABA问题、IO多路复用、BIO、NIO、O、异常处理机制、反射
【Java面试题汇总】Java基础篇——String+集合+泛型+IO+异常+反射(2023版)
|
26天前
|
Java
Java 中 IO 流的分类详解
【10月更文挑战第10天】不同类型的 IO 流具有不同的特点和适用场景,我们可以根据具体的需求选择合适的流来进行数据的输入和输出操作。在实际应用中,还可以通过组合使用多种流来实现更复杂的功能。
42 0
|
2月前
|
Java 大数据 API
Java 流(Stream)、文件(File)和IO的区别
Java中的流(Stream)、文件(File)和输入/输出(I/O)是处理数据的关键概念。`File`类用于基本文件操作,如创建、删除和检查文件;流则提供了数据读写的抽象机制,适用于文件、内存和网络等多种数据源;I/O涵盖更广泛的输入输出操作,包括文件I/O、网络通信等,并支持异常处理和缓冲等功能。实际开发中,这三者常结合使用,以实现高效的数据处理。例如,`File`用于管理文件路径,`Stream`用于读写数据,I/O则处理复杂的输入输出需求。