Q:

Scala program to read data from a file line by line

0

In this program, we will read data from a file line by line using the getLines() method and print data on the console screen.

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 read data from a file line by line is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to read data from a file 
// line by line

import scala.io.Source;

object Sample {
  // Main method
  def main(args: Array[String]) {

    val file = Source.fromFile("Sample.txt")

    println("Data of file:");

    //Read data from file line by line.
    for (line <- file.getLines) {
      println(line)
    }

    file.close();
  }
}

Output:

Data of file:
Text Line1
Text Line2
Text Line3
Text Line4

Explanation:

In the above program, we used an object-oriented approach to create the program. We imported the Source class using the below statement.

import scala.io.Source;

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 used the fromFile() method of the Source class to create an object. Then read data from a file line by line using the getLines() method and printed the data on the console screen.

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

total answers (1)

Similar questions


need a help?


find thousands of online teachers now