Java:如何设置 htmlunit

发布于 2024-09-10 13:13:54 字数 740 浏览 5 评论 0 原文

我对 Java 是个菜鸟,但我想尝试一下 htmlunit。我使用 netbeans 作为 IDE,并创建了一个项目文件夹“hu1”。下面是该文件夹的结构:

hu1
 > nbproject
 > src 
   > hu1
 > test

现在,我下载 htmlunit 2.7 并解压缩该文件夹,其中包含一个“lib”文件夹,其中包含一堆 jar 文件。我应该将该 lib 文件夹放在 netbeans 项目文件夹中的什么位置以便我可以使用 htmlunit?

另外,一旦我弄清楚了,我应该使用哪些路径进行导入。我在网上看到的很多例子都使用这样的内容:

import com.gargoylesoftware.htmlunit.BrowserVersion;
import com.gargoylesoftware.htmlunit.Page;

com.gargoylesoftware 来自哪里?

我知道这是一个初学者问题,我真的应该更多地阅读如何使用 java 编程,但我会感谢这里专家的一些建议。


更新:这是我的设置的图片。

I'm a pretty big noob to Java, but I would like try out htmlunit. I'm using netbeans as my IDE and I've created a project folder "hu1". Here is the structure for that folder:

hu1
 > nbproject
 > src 
   > hu1
 > test

Now, I download htmlunit 2.7 and unzipped the folder, which contains a "lib" folder with a bunch of jar files in it. Where do I put that lib folder in my netbeans project folder so that I can use htmlunit?

Also, once I have figured that out, what paths do I use for my imports. A lot of examples I've seen on the web use something like this:

import com.gargoylesoftware.htmlunit.BrowserVersion;
import com.gargoylesoftware.htmlunit.Page;

Where do the the com.gargoylesoftware come from?

I know this is a beginner questions, and I really should just read up on how to program with java more, but I would appreciate some advice from the experts here.


UPDATE: Here is a picture of my setup.

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

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

发布评论

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

评论(2

策马西风 2024-09-17 13:13:55

现在,我下载了 htmlunit 2.7 并解压缩了该文件夹,其中包含一个“lib”文件夹,其中包含一堆 jar 文件。我应该将该 lib 文件夹放在 netbeans 项目文件夹中的什么位置以便我可以使用 htmlunit?

首先,在 IDE 中注册库。

  1. 在 IDE 中,选择工具 >库打开库管理器。
  2. 单击新建库并提供库的名称,例如“HTMLUnit”
  3. 选择“HTMLUnit”库后,单击“添加 JAR/文件夹...”按钮并选择之前创建的 jar 文件。之前下载并单击“确定”完成

alt 文字
(来源:netbeans.org)

然后,将库添加到您正在处理的项目中。

  1. 从项目视图中选择项目,右键单击并选择“属性
  2. 在“库”类别下,单击“添加库...” >”按钮并选择 HTMLUnit 库,然后单击“确定”完成

alt 文本
(来源:netbeans.org)

(...) com.gargoylesoftware 来自哪里?

您必须从库中添加(更准确地说,从 htmlunit jars 中添加)。

Now, I download htmlunit 2.7 and unzipped the folder, which contains a "lib" folder with a bunch of jar files in it. Where do I put that lib folder in my netbeans project folder so that I can use htmlunit?

First, register the libraries in the IDE.

  1. In the IDE, choose Tools > Libraries to open the Libraries Manager.
  2. Click New Library and provide a name for the library, e.g. "HTMLUnit"
  3. With the "HTMLUnit" library selected, click on the "Add JAR/Folder..." button and select the jar file that was downloaded earlier and click OK to complete

alt text
(source: netbeans.org)

Then, add the libraries to the project you are working on.

  1. Select the project from the Project view, right-click and select "Properties"
  2. Under the Libraries category, click on the "Add Library..." button and choose the HTMLUnit library and click OK to complete

alt text
(source: netbeans.org)

(...) Where do the the com.gargoylesoftware come from?

From the library you have to add (more precisely, from the htmlunit jars).

淡看悲欢离合 2024-09-17 13:13:55

com.gargoylesoftware.htmlunit

是您下载的 jar 文件之一中的包。您必须确保这些 jar 文件位于“类路径”上,以便 Java 找到其中的类(Page、BrowserVersion++)。如果您使用 Netbeans,将 jar 文件转储到 lib 文件夹中通常就可以解决问题。

com.gargoylesoftware.htmlunit

Is a package in one of the jar files you've downloaded. You have to make sure that these jar files are on the "classpath" in order for Java to find the classes inside (Page, BrowserVersion++). If you're using Netbeans dumping the jar's in the lib folder will usually do the trick.

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