gpt4 book ai didi

java - 扫描仪跳过文件中的每一行

转载 作者:行者123 更新时间:2023-11-29 06:56:03 27 4
gpt4 key购买 nike

<分区>

我正在尝试扫描一个文本文件并将每一行放入一个数组列表中,并在下一行是“*”时停止扫描,但是,我的数组列表每隔 2 行存储一次,我不确定为什么。

Scanner scan = new Scanner(new File("src/p/input2.txt"));
ArrayList<String> words = new ArrayList<String>();

while(scan.hasNextLine()) {
if(scan.nextLine().equals("*"))
break;
words.add(scan.nextLine());
}

文本文件:

1

dip
lip
mad
map
maple
may
pad
pip
pod
pop
sap
sip
slice
slick
spice
stick
stock
*
spice stock
may pod

我的数组列表中存储了什么:

[dip, mad, maple, pad, pod, sap, slice, spice, stock]

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