为什么我在Java中读取文本文件时循环?

时间:2012-04-27 01:40:59

标签: java loops file-io while-loop

为了测试,我在文本文件中有三个名字。

Joe       ,Smith
Jim       ,Jones
Bob       ,Johnson

我通过在s=reader.readLine();循环的末尾添加第二个while来修复了永久循环,但是当我运行下面的代码时,我得到以下输出:

JoeSmith
JoeSmith
JimJones
JimJones
BobJohnson
BobJohnson

如何防止重复的名称?我的第二个s=reader.readLine();放错了吗? * 废话。没关系。我正在打印源数据和从中创建的数组字段。 Oy公司。

import java.nio.file.*;
import java.io.*;
import java.nio.channels.FileChannel;
import java.nio.ByteBuffer;
import static java.nio.file.StandardOpenOption.*;
import java.util.Scanner;
import java.text.*;
import javax.swing.JOptionPane;
//
public class VPass
{
    public static void main(String[] args)
    {
        final String FIRST_FORMAT = "          ";
        final String LAST_FORMAT = "          ";
        String delimiter = ",";
        String s = FIRST_FORMAT + delimiter + LAST_FORMAT ;
        String[] array = new String[2];
        Scanner kb = new Scanner(System.in);
        Path file = Paths.get("NameLIst.txt");
        try
        {    
            InputStream iStream=new BufferedInputStream(Files.newInputStream(file));
            BufferedReader reader=new BufferedReader(new InputStreamReader(iStream));
            s=reader.readLine();
            while(s != null)
            {
                array = s.split(delimiter);
                String firstName = array[0];
                String lastName = array[1];
                System.out.println(array[0]+array[1]+"\n"+firstName+lastName);
                s=reader.readLine();
            }
    }
    catch(Exception e)
    {
        System.out.println("Message: " + e);
    }
   }
  }

2 个答案:

答案 0 :(得分:2)

在while循环结束时再次放置s=reader.readLine();。最终它将变为null并且您的循环将退出。

答案 1 :(得分:2)

在第一次循环迭代后,你永远不会更新s

您的代码需要更多:

while ((s = reader.readLine()) != null)
{
  array = s.split(delimiter);
  String firstName = array[0].trim();
  String lastName = array[1].trim();
  System.out.println(array[0]+array[1]+"\n"+userName+password);
}

编辑:根据Sanchit的评论添加trim()建议。


问题发生变化后的后续编辑:

  

我通过添加第二个s = reader.readLine()来修复永恒循环;在我的while循环结束时,但是当我运行下面的代码时,我得到以下输出:

     
    

为JoeSmith

         

为JoeSmith

         

JimJones

         

JimJones

         

BobJohnson

         

BobJohnson

  

如果我们查看您的代码:

while(s != null)
{
  array = s.split(delimiter);
  String firstName = array[0];
  String lastName = array[1];
  System.out.println(array[0]+array[1]+"\n"+firstName+lastName);   // <-- this prints 2 lines of output
  s=reader.readLine();
}

...你看到你为每次循环迭代输出2行输出。