dongxichan8627 2011-05-31 10:39
浏览 123
已采纳

Java:HtmlUnit效率关联PHP CURL?

I have a spider class which on a user request spiders websites for content. Each search results in loading about 30 websites, spidering them for the information and then standardizing this information.

I have written this in PHP using CURL, since PHP is lacking multitasking I would like to switch to Java (I am aware of the multi process curl which does not suit my demand). I need a http client which can POST/GET, receive and set cookies as well as modify HTTP headers.

I have found HtmlUnit which seems nifty but also exceeds my demand, and since the package is relatively big and I will have many hundread requests a minute I don't want to have an overkill solution slowing down my servers.

Do you think this would be an issue and do you have other suggestions to replace CURL in Java? Should I use the Java CURL binding? This is a question of efficiency and server load.

  • 写回答

3条回答 默认 最新

  • douyue8191 2011-05-31 11:30
    关注

    Perhaps take a look at Apache Http Client ?

    You can create a HttpClient per thread and use that to do your requests

    while (running) {
    
    HttpClient client = new DefaultHttpClient();
    HttpGet GET = new HttpGet("mydomain.com/path.html");
    HttpResponse response = client.execute(GET);
    // do stuff with response
    
    }
    

    Even better, if you re-use the HttpClient between requests, it will remember the cookies sent back on previous responses, and automatically apply them to your next request. In that sense a single HttpClient models a http conversation.

    So if you did

     client.execute(GET1);
      // cookies received in response
      client.execute(GET2);
      // the second get will send the cookies back received from GET1 response.
    

    You could then take a look at Java's ExecutorService that will make it easy to place spider jobs and have multiple threads running.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 脱敏项目合作,ner需求合作
  • ¥15 脱敏项目合作,ner需求合作
  • ¥30 Matlab打开默认名称带有/的光谱数据
  • ¥50 easyExcel模板 动态单元格合并列
  • ¥15 res.rows如何取值使用
  • ¥15 在odoo17开发环境中,怎么实现库存管理系统,或独立模块设计与AGV小车对接?开发方面应如何设计和开发?请详细解释MES或WMS在与AGV小车对接时需完成的设计和开发
  • ¥15 CSP算法实现EEG特征提取,哪一步错了?
  • ¥15 游戏盾如何溯源服务器真实ip?需要30个字。后面的字是凑数的
  • ¥15 vue3前端取消收藏的不会引用collectId
  • ¥15 delphi7 HMAC_SHA256方式加密