添加 Java 类

发布于 2024-11-02 05:55:59 字数 231 浏览 3 评论 0原文

菜鸟问题 我知道,但你能向我解释一下如何安装访问下载的 java 类吗?

我正在尝试使用 HtmlUnit..我下载了存档..里面有两个文件夹“lib”和“apidocs”。

我尝试了编辑 /etc/environment 和 .bashrc 的各种组合,但我仍然无法“导入 com.gargoylesoftware.htmlunit”

我正在使用 Ubuntu 10.10

提前致谢

Noob Question I know but can you explain to me how I can install access downloaded java classes.

I am trying to use HtmlUnit.. I downloaded the archive.. inside there are two folders "lib" and "apidocs".

I have tried various combinations of editing /etc/environment and .bashrc but I still can't "import com.gargoylesoftware.htmlunit"

I am using Ubuntu 10.10

Thanks in advance

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

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

发布评论

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

评论(1

つ低調成傷 2024-11-09 05:55:59

Java 进程的启动方式如下:

java -classpath lib/one.jar:lib/two.jar:my_classes com.example.Main

这里,my_classes 是一个包含一些编译后的类文件的目录,一。 jar 和two.jar 是包含已编译类文件的存档文件,com.example.Main 是包含static main(String[]) 方法的类的名称。

这是低层次的观点。在实践中,大多数人使用工具来帮助他们管理类路径并启动程序。您是否使用任何此类工具(Ant、Maven、Eclipse 或 NetBeans 等 IDE、shell 脚本?)

A Java process is launched like so:

java -classpath lib/one.jar:lib/two.jar:my_classes com.example.Main

Here, my_classes is a directory containing some compiled class files, one.jar and two.jar are archive files containing compiled class files, and com.example.Main is the name of a class containing a static main(String[]) method.

That's the low-level view. In practice, most people use tools to help them manage the classpath and launch the program. Are you using any such tools (Ant, Maven, an IDE like Eclipse or NetBeans, shell scripts?)

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