>So you are saying that if I have a file structure C:\WebDev\Eclipse for
>the eclipse program and C:\WebDev\Workspace\Java for my java files,
>that this is causing the problem. That in order for me to be able to do
>this I must have a workspace folder inside the eclipse folder?
No, it has nothing to do with where your workspace is located in relation
to the Eclipse executable. In my case, I do keep them separate. The
problem is where your current working directory is when you run the
application from within Eclipse. That's where you need to put your file.
Try putting this at the beginning of your Main, it will tell you where the
test file should go:
File path = new File("");
System.out.println("Working directory = " + path.getAbsolutePath());
Tom
Wade - 04 Nov 2004 18:06 GMT
11042004 1107 GMT-6
Thanks Tom. That got it. I will get the hang of this language and this
IDE. Im learning - though sometimes slowly.
Again, Thanks
Wade