7
我希望Scala工作表(和Scala解釋器)的工作目錄是Eclipse項目路徑而不是Eclipse安裝目錄。我如何(非編程)實現這一目標?配置Scala工作表的工作目錄
我知道我可以使用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
}
以下是針對該項目記錄的一些問題:[#102](https://github.com/scala-ide/scala-worksheet/issues/102),[#156](https://github.com /斯卡拉-IDE /斯卡拉 - 工作表/問題/ 156)。 – metasim 2014-02-16 14:01:53