我目前正在使用以下内容来执行此操作。
val string = scala.io.Source.fromFile(filePath).mkString
但是,我注意到它很慢。是否有更好的(在速度方面)方法将整个文件读入字符串?
答案 0 :(得分:0)
我使用了以下内容。这比我之前的方法要快得多。
import java.nio.file.Files
import java.nio.file.Paths
val string = new String(Files.readAllBytes(Paths.get(filePath)))