Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7505197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T21:49:31+00:00 2026-05-29T21:49:31+00:00

I am using HtmlUnit in one of my web projects to screen scrape some

  • 0

I am using HtmlUnit in one of my web projects to screen scrape some code. I am wondering to what extent I need to synchronize the code. Currently I am synchronizing all code where I’m using the WebClient object to retrieve pages (i.e. webClient.getPage(url)). I assume that if webClient.getPage() is not synchronized, then the ‘browser’ could possibly try to load multiple pages at once (correct me if I’m wrong). To get around this, I’d probably have to open multiple windows, correct?

My question is concerning the HtmlPage, HtmlTable, etc. classes. After I retrieve an HtmlPage object, do I need to synchronize the reading of that page and other objects returned from the HtmlPage object (i.e. HtmlTable), or is the whole page cached into memory? I assume if it isn’t cached, then if the WebClient calls getPage() again while I’m manipulating the previously returned HtmlPage object, bad things could happen.

I’d like to have a Connection class that has synchronized methods controlling calls to the WebClient that will return an HtmlPage and then manipulate the page without having to worry about synchronization. Are there any issues with this?

Example:

public MyConnection {
    private final WebClient webClient;        

    public MyConnection() {
    this.webClient = new WebClient();
    this.webClient.setTimeout(10 * 1000);
    this.webClient.setJavaScriptEnabled(false);
    this.webClient.setCssEnabled(false);
}

    public synchronized HtmlPage getHtmlPage(String url) {
        return webClient.getPage(url);
    }
}



public UseConnectionClass {
    private MyConnection conn;

    public void getAPage(String url) {
        return conn.getPage(url);
    }        
}

public ClientClass {
    public void doSomething() {
         UseConnectionClass useConn = new UseConnectionClass();
         HtmlPage page1 = useConn.getAPage("http://foobar1.com/");
         HtmlPage page2 = useConn.getAPage("http://foobar2.com/");
         // do something with page1...
         // do something with page2...

        page1.getElementsByTagName("table");
        page2.getElementsByTagName("table");

        // etc...

    }
}

EDIT: I know that WebClient is not thread-safe, hence the MyConnection object method getHtmlPage() in my example is synchronized.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T21:49:33+00:00Added an answer on May 29, 2026 at 9:49 pm

    As the javadoc says:

    a WebClient instance is not thread safe. It is intended to be used
    from a single thread.

    Each thread should have its own WebClient.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing the code to access and download data from some web sites using
I am currently using HtmlUnit and Selenium to drive it (WebDriver) within my production
I'm using HtmlUnit in Java to navigate to a web page. From that webpage
I'm using HtmlUnit for web testing and it is great. But I also want
I'm currently using HtmlUnit to attempt to grab an href out of a page
I am using HtmlUnit in some programs and I always have the problem that
I'm using htmlunit to test some pages and I'd like to know how can
Currently using HtmlUnit. Getting first login page is no problem, succesfully logging in, getting
Using C# .NET 3.5 and WCF, I'm trying to write out some of the
Using JDeveloper , I started developing a set of web pages for a project

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.