请问一下楼主,这种循环能跳出来吗?我怎么本地调试压根就不能跳出循环,hasNext()一直为true处于等待
while(in.hasNext()) {
    arr.add(in.nextLine());
}