tags:

views:

196

answers:

2
A: 

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.

Kimble
+1  A: 

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

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

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

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

Pascal Thivent
I did exactly what you said above and now I do see the HTML Unit jar files under Libraries in the projects tree in netbeans. The problem is, the imports still don't work. The first part of the path: "com" has the read line under it and says "package com.gargoylesoftware.htmlunit does not exist". Any thoughts on whats not working? Also, good detailed answer and thanks for your help.
Joe
@Joe can you try to rebuild the project
Pascal Thivent
When I do, I get that same "package com.gargoylesoftware.htmlunit does not exist" error.
Joe
I added a screenshot of my netbeans project for you to take a look at. Maybe you can see if I am doing something wrong.Thanks
Joe
I fixed the problem. In the libraries menu, I was just adding the folder that contained the jar files. I had to remove that and then add all the jars individually.
Joe
@Joe As I wrote :) Glad it's solved.
Pascal Thivent