Re: What's the problem ??
The error is as shown:
HelloWorld.java:2: error: error while writing HelloWorld: HelloWrld.class <Access is denied>
public class HelloWorld
1 error
(the error cursor is below the c of class)
Re: What's the problem ??
The problem is due to the Windows UAC (User Access Controls). Windows restricts access to the Program Files directory. The best way to get around this is to move your java source files out of the Program Files directory into a non-protected location, for example C:/Java.
Re: What's the problem ??
Quote:
Originally Posted by
helloworld922
The problem is due to the Windows UAC (User Access Controls). Windows restricts access to the Program Files directory. The best way to get around this is to move your java source files out of the Program Files directory into a non-protected location, for example C:/Java.
THANK YOU VERY MUCH for your help !!
Now I can run my programs...