Q:

Scala program to create a file

0

Here, we will create a text file using the File and PrintWriter class. Then we will write data into the text file.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to create a file is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to create a file

import java.io._

object Sample {
  // Main method
  def main(args: Array[String]) {
    //Create a file.
    val file = new File("Sample.txt")

    val pW = new PrintWriter(file);

    pW.write("Hello World");
    pW.close()

    println("File created successfully");
  }
}

Output:

File created successfully

Explanation:

In the above program, we used an object-oriented approach to create the program. And, we created a singleton object Sample and defined the main() function. The main() function is the entry point for the program.

In the main() function, we created an object of the File class and specified the name of the file. Then we passed the object of the File class to the constructor of PrintWriter class to write data into the file.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now