如何从文本文件中打印出特定的字符串

时间:2013-09-17 18:54:58

标签: java file

我正在尝试找出一种从.txt文件中打印出特定字符串的方法。

这是我的方法:

public static void writeBirdtype() {

In innSkjerm = new In(); // Reading from terminal
In fil = new In("fugler.txt"); // Reading from file   

System.out.println("Write out all the observations of a birdtype: ");
String ord = innSkjerm.readLine();

System.out.println("All the observations you asked for:");
while (fil.hasNext()) {
String linje = fil.inWord();
System.out.println(linje);

} // end of while-statement              

} // end of writeBirdType() method

问题是这段代码从.txt文件打印出 all Strings,这不是我想要完成的。谁能看到我在这里失踪的东西?谢谢。

1 个答案:

答案 0 :(得分:0)

这是如何从文件

中读取内容(本例中为字符串)的示例
private String readFileAsString(String filePath) throws IOException {
    StringBuffer fileData = new StringBuffer();
    BufferedReader reader = new BufferedReader(
       new FileReader(filePath));
       char[] buf = new char[1024];
       int numRead=0;

        while((numRead=reader.read(buf)) != -1){
            String readData = String.valueOf(buf, 0, numRead);
            fileData.append(readData);
        }
        reader.close();
        return fileData.toString();
   }
   //rest implementation

编辑:这个解决方案会更好,因为它更容易理解

您可以通过某种方式修改它以阅读您想要的任何内容。这应该是你现在做的。