简体   繁体   English

从文件中读取文本行

[英]Reading Lines of Text from a File

I have a text file containing 5 customers (1 per line), Customer 1, Customer 2, Customer 3, Customer 4 and Customer 5. Using the following code, it reads the 5 lines of text perfectly;我有一个包含 5 个客户(每行 1 个)的文本文件,客户 1、客户 2、客户 3、客户 4 和客户 5。使用以下代码,它完美地读取了 5 行文本;


import java.io.*;

public class CustomerIO  {

public void method () {

        try (BufferedReader br = new BufferedReader(new FileReader(new File ("Customers.txt")))) {
            int numberOfLines = readLines();
            String [] text = new String [numberOfLines];

            for (int i = 0; i < numberOfLines; i++) {
                text[i] = br.readLine();        
            }

            for (int i = 0; i < numberOfLines; i++) {
                System.out.println(text[i]);        
            }
        } catch (Exception e) {
            e.printStackTrace();
        }


    private int readLines() {

        try (BufferedReader br = new BufferedReader(new FileReader(new File ("Customers.txt")))) {

            while ((line = br.readLine()) != null) {
                numberOfLines++;
            }

        } catch (Exception e) {
            e.printStackTrace();
        }
        return numberOfLines;
        }
          }

However when I change to the following the output is: Customer 2, Customer 4, null但是,当我更改为以下输出时:Customer 2, Customer 4, null


import java.io.*;

public class CustomerIO  {

    String line;
    int numberOfLines = 0;

    public void method () {

        try (BufferedReader br = new BufferedReader(new FileReader(new File ("Customers.txt")))) {

            while (br.readLine() != null) {
                System.out.println(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        }


    }

    private int readLines() {

        try (BufferedReader br = new BufferedReader(new FileReader(new File ("Customers.txt")))) {

            while ((line = br.readLine()) != null) {
                numberOfLines++;
            }

        } catch (Exception e) {
            e.printStackTrace();
        }
        return numberOfLines;
        }
}

The main method is contained in the following runner.class file main 方法包含在以下 runner.class 文件中

public class Runner {

    public static void main(String[] args) {

        CustomerIO cus = new CustomerIO ();
        cus.method();
    }
}

Can you help me understand why this is happening?你能帮我理解为什么会这样吗? I want to read the customers into an arraylist when its reading in correctly rather than working with a String [].我想在正确读取时将客户读入数组列表,而不是使用字符串 []。

Thanks谢谢

The problem is that you are calling readline twice for each loop.问题是您为每个循环调用 readline 两次。

Here is your buggy code:这是您的错误代码:

while (br.readLine() != null) {
    System.out.println(br.readLine());

A working solution could be:一个可行的解决方案可能是:

String line = br.readline();
while (line != null) {
    System.out.println(line);
    line = br.readline()
}

The following code calls readLine() twice per iteration of the loop, which is why you only see every other line:以下代码在每次循环迭代中调用readLine()两次,这就是您只能看到每隔一行的原因:

while (br.readLine() != null) {
    System.out.println(br.readLine());
}

You need to assign the returned value to a variable, so you can check for null.您需要将返回值分配给一个变量,以便您可以检查是否为空。

There are many ways to do that, so I'll show some, in decreasing order of recommendation.有很多方法可以做到这一点,所以我将按推荐的降序展示一些。

// Using for loop (recommended)
//   Pro: Keeps the loop logic with the loop
//        Limits the scope of the variable
//        Smallest amount of code (lines of loop code: 2)
//   Con: Unusual construct
//        Inline assignment
for (String line; (line = br.readLine()) != null; ) {
    System.out.println(line);
}
// Using while loop with inline assignment
//   Pro: Common construct
//        Keeps the loop logic with the loop
//        Small amount of code (lines of loop code: 3)
//   Con: Variable scope not limited to the loop
//        Inline assignment
String line;
while ((line = br.readLine()) != null) {
    System.out.println(line);
}
// Using while loop without inline assignment
//   Pro: Common construct
//   Con: Loop logic both before and at end of loop
//        Variable scope not limited to the loop
//        More code (lines of loop code: 4)
//        Calling the readLine() method in two places
String line = br.readLine();
while (line != null) {
    System.out.println(line);
    line = br.readLine();
}
// Using break to exit forever loop
//   Pro: Limits the scope of the variable
//   Con: Loop logic both before and at end of loop
//        Using infinite loop and the break statement
//        More code (lines of loop code: 6)
for (;;) { // or: while (true)
    String line = br.readLine();
    if (line == null) {
        break;
    }
    System.out.println(line);
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM