我希望 Scala 工作表(和 Scala 解释器)的工作目录是 Eclipse 项目路径,而不是 Eclipse 安装目录。我怎样才能(非编程方式)实现这一目标?
我知道我可以使用System.setProperty("user.dir", "...")
,但恕我直言,它不属于代码。此外,它似乎不起作用:
object ScratchWS {
System.setProperty("user.dir", "C:\\") //> res0: String = C:\adt-bundle-windows-x86_64-20130219\eclipse
new File("putty.exe").exists() //> res1: Boolean = false
new File("C:\\putty.exe").exists() //> res2: Boolean = true
}