添加 Java 类
菜鸟问题 我知道,但你能向我解释一下如何安装访问下载的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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?)