我已经成功地从页面上收集了我想要的所有数据,但是我不知道为什么我不能从同一年龄段提取标题或股票符号。我尝试过的所有方法均无效。

感谢任何能提供帮助的人。

我编写的初始代码效果不佳,该站点的某个人已经提供了帮助。我知道表名正确,但是我似乎无法弄清楚为什么它不起作用。仅供参考,我想获取的是图表下方的股票代码和公司名称。

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;

public class WebScrape {
    public static void main(String[] args) throws Exception {
        Scanner scanner = new Scanner(System.in);
        System.out.println("Ticker: ");
        String userInput = scanner.next();
        final String url = "https://finviz.com/quote.ashx?t=" + userInput;

        try {
            final Document document = Jsoup.connect(url).get();
            ArrayList<String> dataArray = new ArrayList<>();
            for (Element row : document.select("table.fullview-title tr")) {
                if ( !row.select("td.fullview-title:nth-of-
                        type(2)").text().contentEquals("")) {
                        String data = row.select("td.fullview-title:nth-of-
                                type(2)").text();
                                dataArray.add(data);
            }

            System.out.println(dataArray);
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }
}


我没有收到任何错误,并且可以轻松连接到url,但是代码只是返回一个空值。

最佳答案

我认为您需要更改选择器。

“ table.fullview-title tr td”->“ table.fullview-title tr td”

“ td.fullview-title:nth-​​of-type(2)”->“ a.fullview-ticker”

我希望这有帮助:

    public class DemoApplication {

    public static void main(String[] args) {
//  Simplification:
//        Scanner scanner = new Scanner(System.in);
//        System.out.println("Ticker: ");
//        String userInput = scanner.next();
//        final String url = "https://finviz.com/quote.ashx?t=" + userInput;
        final String url = "https://finviz.com/quote.ashx?t=LCI";

        try {
            final Document document = Jsoup.connect(url).get();
            ArrayList<String> dataArray = new ArrayList<>();
            for (Element row : document.select("table.fullview-title tr td")) {
                if (!row.select("a.fullview-ticker").text().contentEquals("")) {
                    String data = row.select("a.fullview-ticker").text();
                    dataArray.add(data);
                }
            }
            System.out.println(dataArray);
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }
}


输出:

[LCI]

09-25 20:20