Jump to content

Recommended Posts

Posted

Whenever the data is need to be stored, a file is used to store the data. File is a collection of stored information that are arranged in string, rows, columns and lines etc.

In this section, we will see how to create a file. This example takes the file name and text data for storing to the file.

 

For creating a new file File.createNewFile( ) method is used. This method returns a boolean value true if the file is created otherwise return false. If the mentioned file for the specified directory is already exist then the createNewFile() method returns the false otherwise the method creates the mentioned file and return true.

 

Lets see an example that checks the existence of  a specified file.

 

import java.io.*;

 

public class CreateFile1{

   public static void main(String[] args) throws IOException{

     File f;

     f=new File("myfile.txt");

     if(!f.exists()){

     f.createNewFile();

     System.out.println("New file \"myfile.txt\" has been created

                         to the current directory");

     }

   }

}

 

 

irst, this program checks, the specified file "myfile.txt" is exist or not. if it does not exist then a new file is created with same name to the current location.

 

Output of the Program

C:\nisha>javac CreateFile1.java

 

C:\nisha>java CreateFile1

New file "myfile.txt" has been created to the current directory

 

C:\nisha>

 

If you try to run this program again then after checking the existence of the file, it will not be created and you will see a message as shown in the output.

 

C:\nisha>javac CreateFile1.java

 

C:\nisha>java CreateFile1

The specified file is already exist

 

C:\nisha>

 

download program from here --> http://www.4shared.com/file/218606481/4eb368ec/CreateFile1.html

 

If I Put It On Wrong Section Trasfer It Thnx

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..