This is a simple method to create a new file in Java. Follow the simple code bellow:
package com.techber.file;
import java.io.File;
import java.io.IOException;
public class CreateFileExample
{
public static void main( String[] args )
{
try {
File file = new File("c:\\newfile.txt");
if (file.createNewFile()){
System.out.println("File is created!");
}else{
System.out.println("File already exists.");
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
Note:
[]True if the file is created successful [/][]False if the file is already exists or the operation failed.[/]
阅读全文
收起全文