Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions