Create file in Java

Description

The following code shows how to create file.

Example


//  w  w w  . j  av  a 2s . com
import java.io.File;

public class Main {
  public static void main(String[] args) throws Exception{
      File file = new File("myfile.txt");
      if (file.createNewFile())
        System.out.println("Success!");
      else
        System.out.println("Error, file already exists.");
  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    I/O »




Binary File
Byte Array
CharSet
Checksum
Console
Create Copy Move Delete
Directory
Drive
Encode Decode
File Attribute
File Lock
File System
GZIP
Jar File
NIO Buffer
Path
Scanner
StreamTokenizer
Temporary File
Text File
Zip