Created
June 9, 2014 23:34
-
-
Save tibraga/917353ba36434bc218a6 to your computer and use it in GitHub Desktop.
Revisions
-
tibraga created this gist
Jun 9, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ package com.tibraga.io; 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(); } } }