在 Scala 中使用库

发布于 2024-10-16 17:31:16 字数 316 浏览 2 评论 0 原文

我现在对 Scala 有点菜鸟,正在忙于制作一些小玩具项目。

我想做的一件事是进行一些网页抓取,快速谷歌搜索建议使用此处提供的dispatchhttp://dispatch.databinder.net/Download

问题是我不知道下载后把这个包放在哪里,也不知道 Scala 需要它在哪里供我参考。

我尝试使用 sbaz available 来查找它,但它似乎也不在那里。

任何帮助将不胜感激。

I'm a bit of a noob to Scala at the moment and I'm messing about making little toy projects.

One of the things I want to do is a bit of web page scraping, a quick google search suggested using the dispatch package available from here http://dispatch.databinder.net/Download

The thing is I don't know where to put this package once downloaded and I don't know where Scala needs it to be for me to reference it.

I tried looking for it using sbaz available but it doesn't seem to be there either.

Any help would be appreciated.

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

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

发布评论

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

评论(1

眼中杀气 2024-10-23 17:31:16

JAR 添加到 类路径

scala -classpath <...>.jar

,或下载SBTMaven,任何其他可以管理依赖项的构建工具。
例如,在 SBT 中,您只需将所需的所有 JAR 放在 /lib 下文件夹 让它们自动添加到类路径中。

Add JAR to the classpath:

scala -classpath <...>.jar

,or download SBT, Maven, any other build tool that can manage dependencies.
E.g., in SBT you can simply put all the JARs you need under the /lib folder to get them automatically added to the classpath.

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