Word Counter GUI application Using Java
By Jahnavi Gongal Reddy
It counts the number of words entered in the text area by user or from a file chosen by user. This project is developed using java.
Title: Word Counter Application
The Word Counter(GUI Application) is built using the Java Swing library. Upon launching the application with a large text area where they can input or paste their desired text content.
Which further calculates the total number of words in the provided text upon clicking the "Count Words" button, the word count is diaplayed in a label at the top of the GUI.
To enhance user convenience, the application includes an "Open File" button that allows users to load text from external files directly into the text area. The program reads the selected file, displays its content in the text area, and instantly calculates the word count.
The application implements a custom dialog box to display the word count when the "Count Words" button is pressed. This dialog box shows the word count and a "Close" button for easy dismissal.
Comments