如何将外部库添加到scala解释器的类路径中?
我试图引用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
启动解释器时使用 -classpath 或 -cp 标志:
Use the -classpath or -cp flags when launching the interpreter:
您可以编辑 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.