我正在尝试使用Scala 2.10进行的一些项目,现在我正在使用Scala 2.11。我收到了这个错误:
IO error while decoding C:\...\eclipse\Workspace\Project...\src\...with UTF-8 Please try specifying another one using the -encoding option
我得到了提到的库:Swing,Continuations ......还有scala-all,但是没有它们没有解决这个问题。任何想法可能是什么问题?感谢
我有一些Map
,错误一直存在,直到我导入scala.collection.mutable.Map
!
答案 0 :(得分:1)
在编译时尝试使用这些标志作为源代码:
" - 编码" " UTF-8"
我在SBT中使用这些标志:
lazy val javaMajorVersion = "1.8"
scalaVersion in ThisBuild := "2.11.4",
scalacOptions in ThisBuild := Seq(
"-encoding", "UTF-8",
s"-target:jvm-$javaMajorVersion",
"-deprecation",
"-feature",
"-unchecked",
"-Xlint")