请我想调整这个从文件中读取整数的代码。我希望代码能够检测数据集的数量 (n),而不必像下面那样手动输入数字 (4000)
双[]高=新双[4000];
public class Extracto {
public static void main(String[] args) throws IOException {
File fil = new File("C:\\Users\\Desktop\\kaycee2.csv");
FileReader inputFil = new FileReader(fil);
BufferedReader in = new BufferedReader(inputFil);
double[] tall = new double[4000];
String s = in.readLine();
int i = 0;
while (s != null) {
// Skip empty lines.
s = s.trim();
if (s.length() == 0) {
continue;
}
tall[i] = Double.parseDouble(s); // This is line 19.
// System.out.println(tall[i]);
s = in.readLine();
i++;
}
我期望调整后的代码能够获取数据长度,而无需手动将其放入,如下面的代码所示,长度为 4000。
双[]高=新双[4000];
海绵宝宝撒
相关分类