gpt4 book ai didi

java - 在 foreach 循环中选择特定项目?

转载 作者:行者123 更新时间:2023-12-02 05:27:28 25 4
gpt4 key购买 nike

我有这段代码来获取一些标签:

HttpResponse response = client.execute(method);
InputStream stream = response.getEntity().getContent();
String result = inputestreamToString(stream);
String html = result;
Document doc = Jsoup.parse(html);
Elements mElements = doc.select("div[class^=news-item]");

for (Element e: mElements)
{
title = e.text();
jobtitle.add(title);

StructNote note = new StructNote();
note.title = title;
Notes.add(note);

}

我有 100 个 div,通过这个循环我可以得到所有它们。但我只想获得 20 件元素。

最佳答案

您还可以使用Iterables#limit来自Guava .

for (Element e : Iterables.limit(mElements, 20)) 
{
....
}

关于java - 在 foreach 循环中选择特定项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25862531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com