如何使用scala从服务器读取文本文件

时间:2017-02-02 10:17:52

标签: scala

如何从服务器读取文本文件。以下是我的文件结构

主     SRC       斯卡拉班

properties
  readme.txt
下面的

是我的代码

filepath =" /properties/readme.txt"

val textfilecontent: String= scala.io.Source.fromFile(filepath).getLines.mkString

我收到文件未找到异常。提前致谢

2 个答案:

答案 0 :(得分:0)

/开头的路径是绝对路径。您应该提供绝对路径,或者如果这是正确的相对路径,则删除/

答案 1 :(得分:0)

将properties文件夹移动到资源目录,如下所示

resources
  properties
    readme.txt 

现在您使用以下代码段阅读该文件。

scala.io.Source.fromFile(this.getClass.getResource("/properties/readme.txt").getFile).getLines.mkString