gpt4 book ai didi

java - 当扫描仪读取到最后一个单词时停止扫描仪

转载 作者:行者123 更新时间:2023-12-02 07:21:42 24 4
gpt4 key购买 nike

我对扫描仪不太有经验,但我编写了一种方法来从txt文件中读取每个单词,并为每个单词添加一个到int,但它们的int只是不断增加。我希望它在读取最后一个单词/添加最后一个单词时停止。

    public void drawnames(Graphics g) throws FileNotFoundException{
int str = 0;
String[] string = new String[800*600];
int xpos = 100;
int ypos = 100;
@SuppressWarnings("resource")
Scanner s = new Scanner(new BufferedReader(new FileReader("Particles/Names.txt")));
while(s.hasNext()){
string[str] = s.next();
g.drawString(string[str] + str, xpos, ypos);
str = str + 1;
ypos = ypos + 100;
}
}

最佳答案

在 while 循环之后立即添加以下内容:

s.close();

关于java - 当扫描仪读取到最后一个单词时停止扫描仪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14130773/

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