A simple Java Swing application where users search for words in a grid. The game randomly places words from a predefined list in various directions, and players select letters to match words.
- Randomly generates a new word search puzzle each time
- Highlights selected letters and validates words
- Tracks score based on words found
- Simple and interactive GUI using Java Swing
- Runs on any system with Java installed
Before running this project, ensure you have:
- Java JDK 17+ installed → Download JDK
- Eclipse IDE (or IntelliJ, VS Code with Java support)
- Git (for cloning the repository)
You can download the project files in the following way:
git clone https://github.com/sankethp44/JavaEL_MINI.git
Or downlaod the ZIP from Github and extract it.
- Open Eclipse.
- Go to File → Import.
- Select Existing Projects into Workspace.
- Click Next, then browse to the project folder.
- Click Finish.
- Open
WordSearch.java. - Right-click on the file.
- Select Run As → Java Application.
If you prefer running without an IDE, you can use the terminal with the following commands:
cd path/to/project
javac -d bin src/com/javacodeswing/WordSearch.java
java -cp bin com.javacodeswing.WordSearch