EasyReader class problem
843810Oct 27 2005 — edited Nov 2 2005I am having a small problems with EasyReader. I am just a highschool student learning Java, I am only just learning about objects hehe, well This is the begining of a program of mine for school.
class ch5ex1
{
public static EasyReader console = new EasyReader();
public static void main(String [] args)
{
After compiling this I get these two errors:
C:\Documents and Settings\Steven\Desktop\Mikes Stuff\Java\ch5ex1.java:3: cannot resolve symbol
symbol : class EasyReader
location: class ch5ex1
public static EasyReader console = new EasyReader();
^
C:\Documents and Settings\Steven\Desktop\Mikes Stuff\Java\ch5ex1.java:3: cannot resolve symbol
symbol : class EasyReader
location: class ch5ex1
public static EasyReader console = new EasyReader();
^
2 errors
[i]
I have tried everything I can think of to fix this.
I have made SURE that the easyreader file is in the same folder as the program I am writing. I have tried resaving them both. And the class name match's the file name, these are the things everyone tells me to checkfor so im posting I tried them heh
I belive the problem could have been caused by installing Eclipse (www.eclipse.org) to try it, I disliked the program as it is... more advanced then I am at the moment :) I removed it from my PC and tracked every file It left behind, but still EasyReader REFUSES to work!
Please help!