![]() |
Throws IO Exception in method problem.
Hi Everyone,
I want this readfile method to be called in my other class but the problem is the "throws IO Exception" code.. It says in the other class that "unreported exception java.io.IOException; must be caught or declared to be thrown" import java.util.*; import java.io.*; public class ReadFile { public void loadFile() throws IOException { int nWords = 0; FileReader f = new FileReader ("initlist.txt"); Scanner input = new Scanner ( f ); while (input.hasNextLine()) { String line = input.nextLine(); System.out.println(line); nWords++; } } } How will I fix this?? Thanks Justine |
| All times are GMT. The time now is 03:06 PM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.