Java file IO and "access denied" errors

stimpy :

I have been tearing my hair out on this and thus I am looks for some help .

I have a loop of code that performs the following

//imports ommitted
public void afterPropertiesSet() throws Exception{

  //building of URL list ommitted  
  // urlMap is a HashMap <String,String> created and populated just prior   

    for ( Object urlVar : urlMap.keySet() ){
    String myURLvar = urlMap.get(urlVar.toString);
    System.out.println ("URL is "+myURLvar );
    BufferedImage imageVar = ImageIO.read(myURLvar);//URL confirmed to be valid even for executions that fail
    String fileName2Save = "filepath"// a valid file path
    System.out.println ("Target path is "+fileName2Save );
    File file2Save = new File (fileName2Save);
    fileName2Save.SetWriteable(true);//set these just to be sure
    fileName2Save.SetReadable(true);
      try{
       ImageIO.write (imageVar,"png",file2save)//error thrown here 
      }catch (Exception e){
     System.out.println("R: "+file2Save.canRead()+" W: "+file2Save.canWrite()+" E:"+file2Save.canExecute()+" Exists: "+file2Save.exists+" is a file"+file2Save.isFile() );

     System.out.println("parent Directory perms");// same as above except on parent directory of destination
      }//end try
     }//end for
     }

This all runs on Windows 7 and JDK 1.6.26 and Netbeans,Tomcat 7.0.14 . The target directory is actually inside my netbeans project directory in a folder for a normal web app ( outside WEB-INF) where I would expect normally to have permission to write files.

When the error occurs I get one of two results for the file a.) All false b.)all true. The Parent directory permission never change all true except for isFile.

The error thrown ( java.IO.error with "access denied" ") does not occur every time ... in fact 60% of the time the loop runs it throws no error. The remaining 40% of the time I get the error on 1 of the 60+ files it writes. Infrequently the same one. The order in which the URLs it starts from changes everytime so the order in which the files are written is variable. The file names have short concise names like "1.png". The images are small..less then 8k.

In order to make sure the permissions are correct I have :

Given "full control" to EVERYONE from the net beans project directory down

Run the JDK,JRE and Netbeans as Administrator

Disabled UAC

Yet the error persists. Google searches for this seem to run the gamut and often read like vodoo. Clearly I ( and Java and Netbeans etc ) should have permission to write a file to the directory .

Anyone have any insight ? This is all ( code and the web server hosting the URL) on a closed system so I can't cut and paste code or stacktrace.

Update: I confirmed the imageURL is valid by doing a println & toString prior to each read. I then confirmed that a.) the web server hosting the target URL returned the image with a http 200 code b.) that the URL returned the image when tested in a web browser. In testing I also put a if () in after the read to confirm that the values was not NULL or empty. I also put in tests for NULL on all the other values . They are always as expected even for a failure .The error always occurs inside the try block. The destination directory is the same every execution. Prior to every execution the directory is empty.

Update 2: Here is one of the stack traces ( in this case perms for file2Save are R: True W:True E: True isFile:True exists:True )

    java.io.FileNotFoundException <fullFilepathhere> (Access is denied)
       at java.io.RandomAccessFile.open(Native Method)
       at java.io.RandomAccessFile.<init>(RandomAccessFile.java:212)
       at javax.imageio.stream.FileImageOutputStream.<init>(FileImageOutputStream.java:53)
       at com.sun.imageio.spi.FileImageOutputStreamSpi.createOutputStreamInstance(FileImageOutputStreamSpi.java:37)
       at javax.imageio.ImageIO.createImageOutputStream(ImageIO.java:393)
       at javax.imageio.ImageIO.write(ImageIO.java:1514)
       at myPackage.myClass.afterPropertiesSet(thisClassexample.java:204)// 204 is the line number of the ImageIO write
gigadot :

This may not answer your problem since there can be many other possibilties to your limited information.

One common possibilty for not being able to write a file in web application is the file locking issue on Windows if the following four conditions are met simultaneously:

  1. the target file exists under web root, e.g. WEB-INF folder and
  2. the target file is served by the default servlet and
  3. the target file has been requested at least once by client and
  4. you are running under Windows

If you are trying to replace such a file that meets all of the four conditions, you will not be able to because some servlet containers such as tomcat and jetty will buffer the static contents and lock the files so you are unable to replace or change them.

If your web application has exactly this problem, you should not use the default servlet to serve the file contents. The default servlet is desigend to serve the static content which you do not want to change, e.g. css files, javascript files, background images, etc.

There is a trick to solve the file locking issue on Windows for jetty by disabling the NIO http://docs.codehaus.org/display/JETTY/Files+locked+on+Windows

The trick is useful for development process, e.g. you want to edit the css file and see the change without restarting your web application, but it is not recommended for production mode. If your web application relies on this trick in the production process, then you should seriously consider redesign your codes.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

Java - Access is denied java.io.FileNotFoundException

java.io.FileNotFoundException: (Access is denied)

FileNotFound (Access is denied) Exception on java.io

Java reading txt.file - access denied?

Golang "Access is denied" error on trying to write to file with io.WriteString

Java JSSE RMI SSL file gets access denied

Access denied when opening WMV file from Java application

Deleting file, but is access denied

Access denied to delete file

AssignFile(): File access denied

File access is denied

File copy access denied

Access Denied Writing File

Java Access Denied

java.io.FileNotFoundException: C:\Users\Lance Dean\Desktop\Java\End.jpg (Access is Denied)

Java Keytool error after importing certificate , "keytool error: java.io.FileNotFoundException & Access Denied"

java.io.IOException: Cannot run program adb.exe CreateProcess error=5, Access is denied

java.io.FileNotFoundException: C:\Users\user\AppData\Local\Temp (Access is denied)

java.io.FileNotFoundException: C:\Users\USER\.AndroidStudio2.1\system\port.lock (Access is denied)

Cannot create file, access is denied

Java RMI AccessControlException: access denied

Nuget add packages gives access denied errors

Random access denied errors on User Extensions

java.sql.SQLException: Access denied for user '"java"'@'localhost' (using password: YES) using properties file

java.security.AccessControlException: access denied (java.io.FilePermission /usr/share/java/jsp-api-2.0.jar read)

Writing file to S3 with AWS Lambda errors - An error occurred (AccessDenied) when calling the PutObject operation: Access Denied

java.lang.SecurityException: Could not lock User prefs. Lock file access denied

java.io.FileNotFoundException: c:\screenshot.png (Access is denied) error while trying to paste the screenshot to a system folder

icacls is giving access denied on remote file system