简体   繁体   中英

How to import HTTPClient in Dr. Java?

I am attempting to write a code to scrape websites and use httpclient. I am trying to import the proper classes to run my program, but it is saying the package does not exist. I have looked at their API to try to figure it out and still cannot. My code is:

import java.io.IOException; 
import org.apache.commons.httpclient.*; 
import org.apache.commons.httpclient.methods.*;
import java.util.Scanner  

public class Scraper3 { 

  public static String scrapeWebsite() throws IOException {

HttpClient client = new DefaultHttpClient();
    HttpGet get = new HttpGet("http://ichart.finance.yahoo.com/table.csv?s=MSFT");
    HttpResponse response = client.execute(get);
    HttpEntity entity = response.getEntity();
    if (entity != null) {
        Scanner scanner = new Scanner(entity.getContent());
        while (scanner.hasNextLine()) {
            System.out.println(scanner.nextLine());
        }
    }
  }
}

尝试: org.apache.http.client.HttpClient

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM