Package org.bladerunnerjs.utility

Examples of org.bladerunnerjs.utility.DeleteTempFileShutdownHook


  }
 
  public static File createTemporaryFile(String prefix, String suffix) throws IOException
  {
    final File temp = File.createTempFile(prefix, suffix);
    Runtime.getRuntime().addShutdownHook(new DeleteTempFileShutdownHook(temp));
    return temp;
  }
View Full Code Here

TOP

Related Classes of org.bladerunnerjs.utility.DeleteTempFileShutdownHook

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.