如何将外部库添加到scala解释器的类路径中?

发布于 2024-07-16 20:35:54 字数 184 浏览 10 评论 0原文

我试图引用 Scala 解释器中的一些使用 Eclipse 编写和编译的类。 Eclipse 将编译后的 Java 字节代码存储在文件夹 {workspace}/myProject/bin 中。 是否有一些命令可以将此文件夹添加到 Scala 解释器使用的类路径中?

也许 scala.bat 应该用一些参数进行编辑或参数化?

I'm trying to reference some classes in the Scala Interpreter that were writen and compiled using Eclipse. Eclipse stores compiled Java byte code in a folder {workspace}/myProject/bin. Is there some command which will add this folder to the classpath used by the Scala Interpreter?

Maybe scala.bat should be edited or parameterized with some argument?

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

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

发布评论

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

评论(2

清醇 2024-07-23 20:35:55

启动解释器时使用 -classpath 或 -cp 标志:

scala -cp /path/to/classfiles

Use the -classpath or -cp flags when launching the interpreter:

scala -cp /path/to/classfiles
十年九夏 2024-07-23 20:35:55

您可以编辑 scala.bat,或者制作一个副本以保持原始版本不变。

您可能需要使用 call :add_cpath "..." 来添加它,就像在该批处理文件中的某处使用的那样。

You can edit scala.bat, or rather make a copy to leave the original unchanged.

You will probably want to use call :add_cpath "..." to add it, as is used somewhere in that batch file.

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