when i save java file error is you dont have permission to save in this location contact the administrator to obtain permission on window7
|
That's normal - Write your files to the users home directory (System property "user.home", works across platforms), or let the user choose where you save stuff. |
|||
|
|
|
Don't store application data in the "Program Files" directory. It is very bad design and regular users don't have write access to that directory (for a very good reason). So even if you changed your settings locally to open up the door for viruses your application won't run on other computers. Besides: storing a Java file in the JDK directory serves no purpose at all. Btw: your uppercase letters are broken, as well as the dot or the comma... |
|||
|
|