如何使用eclipse读取一个txt文件作为我的system.in

How to read a txt file as my system.in using eclipse

我正在解决 Code Chef 上的问题。我遇到了一个问题,它只是说我的答案是错误的。我想测试我的程序以查看其输出,但它从文本文件读取输入,我不知道如何使用 Eclipse 执行此操作,我的代码如下:

import java.io.*;
class Holes {

public static void main(String[] args) throws IOException{
    // TODO Auto-generated method stub
    BufferedReader r = new BufferedReader(new InputStreamReader(System.in));
    int testCases = Integer.parseInt(r.readLine());

    for (int i =0; i<testCases; i++)
    {
        int holes = 0;
        String s = r.readLine();
        for (int j= 0; j< s.length(); j++)
        {
            char c = s.charAt(j);
            if (c == 'B')
                holes += 2;
            else if (c== 'A' || c== 'D' ||c== 'O' ||c== 'P' ||c== 'Q' ||c== 'R' )
            {
                holes +=1;
            }
            System.out.println(holes);
        }
    }   
}

}

将文件夹添加到您的 eclipse 项目中,在该文件夹中添加您的输入文件,然后使用 BufferReader 读取它,如下所示 BufferedReader br = null;

try {

    String sCurrentLine;

    br = new BufferedReader(new FileReader("yourFolder/theinputfile.txt"));

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

} catch (IOException e) {
    e.printStackTrace();
} finally {
    try {
        if (br != null)br.close();
    } catch (IOException ex) {
        ex.printStackTrace();
    }
}

这是一种方式,另一种方式是将路径作为参数传递给您的程序 如下所示

try {

        String sCurrentLine;

        br = new BufferedReader(new FileReader(args[0]));

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

    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            if (br != null)br.close();
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }

如何在您的 运行 应用程序进行 运行 配置时执行此操作,您会在其中找到参数,您可以在其中添加任何路径,例如 c:\myinput.txt 希望这有帮助

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;

public class BufferedReaderExample {

    public static void main(String[] args) {

        BufferedReader br = null;

        try {

            String sCurrentLine;

            br = new BufferedReader(new FileReader("C:\testing.txt"));

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

        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (br != null)br.close();
            } catch (IOException ex) {
                ex.printStackTrace();
            }
        }

    }
}