Question
import java.io.File; public class TestDictionary extends MyDictionary { public static void main(String[] args) { TestDictionary td=new TestDictionary(); File myFile=new File(srctest.txt); td.openMyFile(test.txt); System.out.println(Total Number of Characters
import java.io.File;
public class TestDictionary extends MyDictionary { public static void main(String[] args) { TestDictionary td=new TestDictionary(); File myFile=new File("src\\test.txt"); td.openMyFile("test.txt"); System.out.println("Total Number of Characters :"+td.countCharacters(myFile)); System.out.println("Total Number of Words :"+td.countWords(myFile)); System.out.println("Total Number of Vowels :"+td.countVowels(myFile)); System.out.println("Search the Word:"+td.searchWord(myFile,"language")); td.closeFile(myFile); System.out.println("File is Closed"); } }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started