如何从CNBC市场页面解析表格数据?

问题描述 投票:0回答:1

我正在编写一个程序,该程序需要用户输入才能连接到站点,将其html下载为文本,并每天两次从表中检索数据。我知道代码不会适合所有页面的大小(一旦工作,我很可能会将URL硬编码到代码中)。我目前的问题是我的jsoup解析器无法正确读取表格数据。我不确定我的元素选择器是否太通用?该表看起来像是标准表/ tr / td格式,但是我的行数组的大小为0。如果有人可以帮助我调试解析器,并可能提供一些建议,以寻求每天两次无声地获取数据的机会,我非常感谢!没有运行时/编译错误,只需要更正输出即可。

源站点:https://www.cnbc.com/us-markets/表的源代码(摘要):

<table class="BasicTable-table"><thead class="BasicTable-tableHeading BasicTable-tableHeadingSortable"><tr><th class="BasicTable-textData"><span>SYMBOL <span class="icon-sort undefined"></span></span></th><th class="BasicTable-numData"><span>PRICE <span class="icon-sort undefined"></span></span></th><th class="BasicTable-numData">

我的代码:

public class StockScraper {

public static void main(String[] args) {
    Scanner input = new Scanner (System.in);
    System.out.println("Enter the complete url (including http://) of the site you would like to parse:");
    String html = input.nextLine();
    try {
        Document doc = Jsoup.connect(html).get();
        System.out.printf("Title: %s", doc.title());
        //Try to print site content
        System.out.println("");
        System.out.println("Writing html contents to 'html.txt'...");
        //Save html contents to text file
        PrintWriter outputfile = new PrintWriter("html.txt");
        outputfile.print(doc.outerHtml());
        outputfile.close();

        //Select stock data you want to retrieve
        System.out.println("Enter the name of the stock you want to check");
        String name = input.nextLine();

        //Pull data from CNBC Markets
        Element table = doc.select("table").get(0);
        Elements rows = table.select("tr");
        System.out.println(rows.size());
        for(int i = 1; i < rows.size(); i++) {
            Element rowx = rows.get(i);
            Elements col = rows.select("td");
            if(col.get(0).equals(name)) {
                System.out.println("I worked!");
                System.out.println(col.get(1));
            }
        }
} catch (IOException e) {
        e.printStackTrace();
    }
}
java html web-scraping automation jsoup
1个回答
0
投票

这里的问题是,该站点是一个动态页面,在浏览器最初下载该页面后正在加载内容。 Jsoup不足以刮擦这样的页面。您有几个选择:

1)使用模拟浏览器并进行所有必要api调用的工具。有两个选项是Selenium WebDriver或HTMLUnit。

2)找出您对此站点感兴趣的api调用,然后直接调用这些api即可获取可以解析的JSON文档。您可以通过在浏览器中打开开发人员工具,然后查看“网络”标签来查看api详细信息。对于此站点,示例如下,其中包括DJI的股票报价:

https://quote.cnbc.com/quote-html-webservice/quote.htm?noform=1&partnerId=2&fund=1&exthrs=0&output=json&symbolType=issue&symbols=599362|579435|593933|49020635|49031016|5093160|617254|601065&requestMethod=extended

Returns:

ExtendedQuoteResult: {
  xmlns: "http://quote.cnbc.com/services/MultiQuote/2006",
  ExtendedQuote: [{
    QuickQuote: {
      symbol: ".DJI",
      code: "0",
      curmktstatus: "REG_MKT",
      FundamentalData: {
      yrlodate: "2020-03-23",
      yrloprice: "18213.65",
      yrhidate: "2020-02-12",
      yrhiprice: "29568.57"
    },
    mappedSymbol: {
      xsi:nil: "true"
    },
    source: "Exchange",
    cnbcId: "599362",
    prev_prev_closing: "21413.44",
    high: "22783.45",
    low: "21693.63",
    provider: "CNBC Quote Cache",
    streamable: "0",
    last_time: "2020-04-06T17:16:28.000-0400",
    countryCode: "US",
    previous_day_closing: "21052.53",
    altName: "Dow Industrials",
    reg_last_time: "2020-04-06T17:16:28.000-0400",
    last_time_msec: "1586207788000",
    altSymbol: ".DJI",
    change_pct: "7.73",
    providerSymbol: ".DJI",
    assetSubType: "Index",
    comments: "RIC",
    last: "22679.99",
    issue_id: "599362",
    cacheServed: "false",
    responseTime: "Mon Apr 06 19:12:09 EDT 2020",
    change: "1627.46",
    timeZone: "EDT",
    onAirName: "Dow Industrials",
    symbolType: "issue",
    assetType: "INDEX",
    volume: "614200990",
    fullVolume: "614200990",
    realTime: "true",
    name: "Dow Jones Industrial Average",
    quoteDesc: { },
    exchange: "Dow Jones Global Indexes",
    shortName: "DJIA",
    cachedTime: "Mon Apr 06 19:12:09 EDT 2020",
    currencyCode: "USD",
    open: "21693.63"
  }
}
...
© www.soinside.com 2019 - 2024. All rights reserved.