gpt4 book ai didi

java - 行号读取器

转载 作者:太空宇宙 更新时间:2023-11-04 07:37:28 26 4
gpt4 key购买 nike

我的代码遇到一些问题

window.videoInfo.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent e) {

try {

URL url = new URL(window.videoInput.getText());
URLConnection con = url.openConnection();

LineNumberReader in = new LineNumberReader(new InputStreamReader(con.getInputStream()));
in.setLineNumber(1523);
in.getLineNumber();

System.out.print(in.readLine());

} catch (IOException ex) {
ex.printStackTrace();

}

我正在尝试显示网站上的特定线路。但如果我按下按钮,它总是显示第一行。即使我将行号设置为 1523。

最佳答案

setLineNumber(1523) 仅使 getLineNumber() 返回的行号以 1523 开头。它不会跳过 1523 行。要跳过 1523 行,您需要执行以下操作:

for(int i = 0; i < 1523; i++)
in.readLine();

关于java - 行号读取器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16623990/

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