Windows 7 上的 Scala 2.8.0 问题

发布于 2024-09-30 16:00:25 字数 618 浏览 1 评论 0 原文

我昨晚安装了 scala 2.8.0,但运行它时似乎遇到了一些问题。如果我在命令提示符下输入 scala,它会显示以下内容:

> scala
Exception in thread "main" java.lang.NoSuchMethodError: scala.collection.mutable.ListBuffer.toList()Lscala/collection/immutable/List;
        at scala.collection.TraversableOnce$class.toList(TraversableOnce.scala:399)
        at scala.collection.mutable.ArrayOps.toList(ArrayOps.scala:34)
        at scala.tools.nsc.MainGenericRunner$.main(MainGenericRunner.scala:33)
        at scala.tools.nsc.MainGenericRunner.main(MainGenericRunner.scala)

有人有任何想法吗?我使用的是 Windows 7 Professional,使用 Oracle JRE 1.6.0_21

I installed scala 2.8.0 last night and I seem to be having some issues getting it running. If I type scala at the command prompt it comes up with the following:

> scala
Exception in thread "main" java.lang.NoSuchMethodError: scala.collection.mutable.ListBuffer.toList()Lscala/collection/immutable/List;
        at scala.collection.TraversableOnce$class.toList(TraversableOnce.scala:399)
        at scala.collection.mutable.ArrayOps.toList(ArrayOps.scala:34)
        at scala.tools.nsc.MainGenericRunner$.main(MainGenericRunner.scala:33)
        at scala.tools.nsc.MainGenericRunner.main(MainGenericRunner.scala)

Anyone have any ideas? I'm on Windows 7 professional, with Oracle JRE 1.6.0_21

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

捎一片雪花 2024-10-07 16:00:25

您是否将 SCALA_HOME 环境变量设置为指向正确的目录?

Did you set the SCALA_HOME environment variable to point to the correct directory?

清秋悲枫 2024-10-07 16:00:25

您安装了旧版本吗?如果它仍然在您的路径上,那么它可能会导致问题...

编辑

您可以粘贴 PATH 和 CLASSPATH 环境变量的内容吗?如果馅饼或馅饼较大的话,也许可以使用它们。

如果可能的话,您还应该更新到 Java 1.6.0_22,因为更新 21 中存在此错误: https://bugs.java.com/bugdatabase/view_bug?bug_id=6969236

Did you have an older version installed? If that's still on your path then it may be causing problems...

EDIT

Can you paste the contents of your PATH and CLASSPATH environment variables? Perhaps using pastie or pastebin if they're on the large side.

You should also update to Java 1.6.0_22 if at all possible, due to this bug which was present in update 21: https://bugs.java.com/bugdatabase/view_bug?bug_id=6969236

千寻… 2024-10-07 16:00:25

事实证明,出现这个问题是因为我将 sbt-launch.jar 放在了 scala 安装的 lib 目录中。一旦我将它移到另一个目录中,scala 就可以正常工作了。

Turns out this problem occurred because I put the sbt-launch.jar in the lib directory for my scala installation. Once I moved it into another directory scala worked fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文