File.readLines() reads the file content as a list of lines. It should not be used for large files.
Kotlin read a file with File.readLines
The example reads a file with File.readLines().
import java.io.File
fun main(args: Array<String>) {
val fileName = "src/resources/sample.txt"
val lines: List<String> = File(fileName).readLines()
lines.forEach { line -> println(line) }
}
Comments
Post a Comment