Mega Code Archive

 
Categories / Java / File Input Output
 

Create new empty file

import java.io.File; public class Main {   public static void main(String[] args) throws Exception {     File file = new File("C://demo.txt");     boolean blnCreated = false;     blnCreated = file.createNewFile();     System.out.println(blnCreated);   } }