Scala File Input and Output - Scala Tutorial | Intellipaat.com

Process Advisors

ey-logo
*Subject to Terms and Condition

Overview of reading and writing file operations

File operations mostly include reading data from the file or writing data into files.

Writing Data from File
e.g.

import java.io._
object Intellipaat {
def main(args: Array[String]) {
val writer = new PrintWriter(new File("intellipaat.txt" ))
writer.write("Hello Intellipaat")
writer.close()
}
}

Interested in learning Scala? Click here to learn more in this Scala Training in New York!

When we compile and execute this program then it writes Hello Intellipaat in intellipaat.txt file.

Certification in Bigdata Analytics

Reading Data from File
e.g.

import scala.io.Source
object Intellipaat {
def main(args: Array[String]) {
println("Data in File is:" )
Source.fromFile("intellipaat.txt" ).foreach{
print
}
}
}

Enroll yourself in Online Scala Training and give a head-start to your career in Apache Spark and Scala!

Compile and execute the above program:
scalac Intellipaat.scala
scala Intellipaat
Output
Data in file is: Hello Intellipaat

This blog will help you get a better understanding of the Significance Of Scala!

Course Schedule

Name Date Details
Big Data Course 07 Oct 2023(Sat-Sun) Weekend Batch
View Details
Big Data Course 14 Oct 2023(Sat-Sun) Weekend Batch
View Details
Big Data Course 21 Oct 2023(Sat-Sun) Weekend Batch
View Details

Leave a Reply

Your email address will not be published. Required fields are marked *