gpt4 book ai didi

java - 从声明了静态常量的文本文件中读取

转载 作者:行者123 更新时间:2023-12-01 11:25:20 36 4
gpt4 key购买 nike

我正在尝试编写一段代码来读取文件的内容,并且我能够成功读取它。我还想做的是声明一个静态常量,例如 max_number_of_players ,以便读取的数据不会超过此值。有什么办法可以做到这一点吗?到目前为止我的代码:

import java.io.*;
import java.util.*;

public class Test{
public static void main(String[] args) throws IOException
{

String fileName = "Data/players.txt";

File file = new File(fileName);

Scanner in = new Scanner(file);

while(in.hasNextLine()){
String line = in.nextLine();

System.out.println(line);
}
in.close();

}
}

最佳答案

只需在 while 循环中添加另一个条件即可:

int playerCount = 0;

while(in.hasNextLine() && playerCount++ < max_number_of_players){
...

关于java - 从声明了静态常量的文本文件中读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30857043/

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