#Error 914 - unable to write to output directory

Hi I am using jBuilder 3.5 and every time i try to compile or run my application i keep getting:#Error 914 - unable to write to output directory.I have never come across this error before and would be grateful for any solutions.thanx
[268 byte] By [pskalsi] at [2007-9-27 20:41:59]
# 1

I would guess that to compile JBuilder has to write the class files someplace. More then likely it's the same place you saved the java files to and that this DIR is read-only. Check there first. You could also try compiling from DOS to see if that works. I have JBuilder and GVIM that I use and I still compile and run from DOS that way I can update my SDK without updating my JBuilder.

Foulkelore at 2007-7-7 2:00:44 > top of Java-index,Archived Forums,Java Programming...
# 2
is your application trying to input/output to a file?
kbunny at 2007-7-7 2:00:44 > top of Java-index,Archived Forums,Java Programming...
# 3
This error happens when i try to compile and run any application, i think that jBuilder has to write to a output directory when it compiles a application but for some reason windows will not let me write to this directory. Any ideas how i can run my code through DOS using jbuilder 3.5?
pskalsi at 2007-7-7 2:00:44 > top of Java-index,Archived Forums,Java Programming...
# 4
First see if the directory exists. 2ndly, check if it is not write protected.Also since the error no Error914 is mentioned. If this is generated by JBuilder see what the help doc says about Error914.HTH
Manish21 at 2007-7-7 2:00:44 > top of Java-index,Archived Forums,Java Programming...
# 5
I saw this error before, one or more *.class files with the same name exist in mulitple directory (src path and output path) you may need to check that
TDThien at 2007-7-7 2:00:44 > top of Java-index,Archived Forums,Java Programming...