Answers for "file creation in java"

6

Java create new file

// example on createNewFile() method of File class in java
import java.io.File;
import java.io.IOException;
public class CreateFileDemo
{
   public static void main(String[] args) throws IOException
   {
      try
      {
         File file = new File("D:\\demo.txt");
         boolean bool = file.createNewFile();
         if(bool)
         {
            System.out.println("File created successfully");
         }
         else
         {
            System.out.println("File already exists");
         }
      }
      catch(IOException ex)
      {
         System.out.println("Exception : ");
         ex.printStackTrace();
      }
   }
}
Posted by: Guest on November-30-2020
1

java create file

String fileData = "yourContent";
FileOutputStream fos = new FileOutputStream("yourFile.txt");
fos.write(fileData.getBytes());
fos.flush();
fos.close();
Posted by: Guest on April-26-2020
3

java create file

File filename = new File(filepath)
Posted by: Guest on March-09-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language