This project counts the occurrences of words from a given URL.
This Java application fetches the content of a web page and calculates the frequency of each word. It's a simple tool for analyzing text content from a URL.
To use this application, you need to provide a URL as input. The application will then output a map of words and their corresponding counts.
src/com/rakuten/src/Util/CountWords.java: This is the main utility class that contains the logic for counting words from a given string.src/com/rakuten/test/: This directory contains the tests for the application.