原文: http://zetcode.com/kotlin/readfile/

Kotlin 读取文件教程显示了如何在 Kotlin 中读取文件。 我们展示了几种在 Kotlin 中读取文件的方法。

在本教程中,我们使用File方法读取文件。

本教程提供了五个示例,这些示例在 Kotlin 中读取文件。

thermopylae.txt

  1. The Battle of Thermopylae was fought between an alliance of Greek city-states,
  2. led by King Leonidas of Sparta, and the Persian Empire of Xerxes I over the
  3. course of three days, during the second Persian invasion of Greece.

在示例中,我们使用此文本文件。

Kotlin 使用File.readLines读取文件

File.readLines()读取文件内容为行列表。 不应将其用于大文件。

readfile.kt

  1. package com.zetcode
  2. import java.io.File
  3. fun main(args: Array<String>) {
  4. val fileName = "src/resources/thermopylae.txt"
  5. val lines: List<String> = File(fileName).readLines()
  6. lines.forEach { line -> println(line) }
  7. }

该示例使用File.readLines()读取文件。

Kotlin 使用File.useLines读取文件

File.useLines()读取所有数据作为行列表,并将其提供给回调。 最后关闭读者。

readfile2.kt

  1. package com.zetcode
  2. import java.io.File
  3. fun main(args: Array<String>) {
  4. val fileName = "src/resources/thermopylae.txt"
  5. val myList = mutableListOf<String>()
  6. File(fileName).useLines { lines -> myList.addAll(lines) }
  7. myList.forEachIndexed { i, line -> println("${i}: " + line) }
  8. }

该示例读取文件并将其打印到控制台。 我们在输出中添加行号。

  1. val myList = mutableListOf<String>()

可变列表已创建。

  1. File(fileName).useLines { lines -> myList.addAll(lines) }

使用File.useLines(),我们将行列表复制到上面创建的可变列表中。

  1. myList.forEachIndexed { i, line -> println("${i}: " + line) }

使用forEachIndexed(),我们为每行添加一个行号。

Kotlin 使用File.readText读取文件

File.readText()String的形式获取此文件的全部内容。 不建议在大文件上使用此方法。

readfile3.kt

  1. package com.zetcode
  2. import java.io.File
  3. fun main(args: Array<String>) {
  4. val fileName = "src/resources/thermopylae.txt"
  5. val content = File(fileName).readText()
  6. println(content)
  7. }

在示例中,我们将整个文件读入一个字符串并将其打印到控制台。

Kotlin 使用InputStream读取文件

InputStream是字节的输入流。

readfile4.kt

  1. package com.zetcode
  2. import java.io.File
  3. import java.io.InputStream
  4. import java.nio.charset.Charset
  5. fun main(args: Array<String>) {
  6. val fileName = "src/resources/thermopylae.txt"
  7. val myFile = File(fileName)
  8. var ins: InputStream = myFile.inputStream()
  9. var content = ins.readBytes().toString(Charset.defaultCharset())
  10. println(content)
  11. }

该示例从File创建InputStream并从中读取字节。 字节转换为文本。

  1. var ins: InputStream = myFile.inputStream()

FileinputStream()创建一个InputStream

  1. var content = ins.readBytes().toString(Charset.defaultCharset())

我们使用readBytes()InputStream读取字节,然后使用toString()将字节转换为文本。

Kotlin 使用readBytes读取文件

readBytes()以字节数组的形式读取文件的全部内容。 不建议在大文件上使用。

readfile5.kt

  1. package com.zetcode
  2. import java.io.File
  3. fun main(args: Array<String>) {
  4. val fileName = "src/resources/thermopylae.txt"
  5. val file = File(fileName)
  6. var bytes: ByteArray = file.readBytes()
  7. bytes.forEachIndexed { i, byte -> (
  8. if (i == 0) {
  9. print("${byte} ")
  10. } else if (i % 10 == 0) {
  11. print("${byte} \n")
  12. } else {
  13. print("${byte} ")
  14. })
  15. }
  16. }

该示例将文本文件读入字节数组。 它将文件以数字形式打印到控制台。

在本教程中,我们展示了如何在 Kotlin 中读取文件。 您可能也对相关教程感兴趣: Kotlin 编写文件教程Kotlin Hello World 教程