gpt4 book ai didi

java - 如何在 X 行启动扫描仪

转载 作者:行者123 更新时间:2023-11-30 10:06:48 25 4
gpt4 key购买 nike

我想遍历 HTML 文档的行并打印输出。

通常我会做类似的事情

URL url = new URL("http://google.com");
Scanner scanner = new Scanner(url.openStream());

while(scanner.hasNext())
System.out.println(scanner.nextLine());

但是,假设我想从第 30 行开始打印内容,而不是第 1 行。那我该怎么办?

最佳答案

您可以先调用scanner.nextLine 30 次,然后开始打印。例如:

// go through the first 30 lines without printing them...
for (int i = 0 ; i < 30 && scanner.hasNextLine() ; i++) {
scanner.nextLine();
}

// and now print the remaining lines
while(scanner.hasNextLine())
System.out.println(scanner.nextLine());

关于java - 如何在 X 行启动扫描仪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54492110/

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