Tutorials Point


  Java Basics Examples
  Java Tutorial
  Java Useful Resources
  Selected Reading

© 2011 TutorialsPoint.COM


  Home     References     Discussion Forums     About TP  

Java Examples - Create a temporary File


previous next AddThis Social Bookmark Button


Problem Description:

How to create a temporary file?

Solution:

This example shows how to create a temporary file using createTempFile() method of File class.

import java.io.*;

public class Main {
   public static void main(String[] args) 
   throws Exception {
      File temp = File.createTempFile
      ("pattern", ".suffix");
      temp.deleteOnExit();
      BufferedWriter out = new BufferedWriter
      (new FileWriter(temp));
      out.write("aString");
      System.out.println("temporary file created:");
      out.close();
   }
}

Result:

The above code sample will produce the following result.

temporary file created:


previous next Printer Friendly



  

Advertisement

Online Image Processing

Indian Baby Names