我正在尝试使用以下代码读取.torrent文件:
val source = scala.io.Source.fromFile(filename, "utf-8")
val lines = source.mkString
source.close()
但是当我运行我的程序时,我得到以下异常:
Exception in thread "main" java.nio.charset.MalformedInputException: Input length = 1
我尝试过没有字符集并得到同样的问题。
问题是什么以及charset应该如何阅读.torrent文件?