0

我是 Java 编码的新手。我将这段代码放在一起以读取以下文本文件中“开始”和“结束”标记之间的所有行。

开始

你好

你好

如何

正在做?

结尾

我的程序如下......

package test;

import java.io.*;

public class ReadSecurities {
public static int countLines(String filename) throws IOException {
    InputStream is = new BufferedInputStream(new FileInputStream(filename));
    try {
        byte[] c = new byte[1024];
        int count = 0;
        int readChars = 0;
        boolean empty = true;
        while ((readChars = is.read(c)) != -1) {
            empty = false;
            for (int i = 0; i < readChars; ++i) {
                if (c[i] == '\n') {
                    ++count;
                }
            }
        }
        return (count == 0 && !empty) ? 1 : count;
    } finally {
        is.close();
    }
}

public static void main(String[] args) {
    // TODO Auto-generated method stub

      try {
        FileInputStream in = new FileInputStream("U:\\Read101.txt");
        FileOutputStream out = new FileOutputStream("U:\\write101.txt");
    BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(out));
      BufferedReader br = new BufferedReader(new InputStreamReader(in));

        for (int i=1; i<=countLines("U:\\Read101.txt"); i++) {
            String line=br.readLine();
                 while (line.contains("Start")) {
                    for (int j=i; j<=countLines("U:\\Read101.txt"); j++) {
                        String line2=br.readLine();
                        System.out.println(line2);
                        if(line2.contains("End")) break; 
                    else {
                             bw.write(line2);
                             bw.newLine();
                    }
                        bw.close();
                    } break;
                 }
               }
            br.close();
      }
      catch (Exception e) { }
      finally { }
      }
}

程序只读取前两行“hi hello”,就好像 if 条件不存在一样。我觉得这个错误非常基本,但请纠正我。

4

3 回答 3

1
String line;

do{ line = br.readLine(); }
while( null != line && !line.equals("Start"));

if ( line.equals("Start") ) { // in case of EOF before "Start" we have to skip the rest!
    do{ 
        line = br.readLine(); 
        if ( line.equals("End") ) break;
        // TODO write to other file
    }while(null != line )
}

应该就这么简单。为简洁起见,我省略了资源的创建/销毁和适当的异常处理。

但请至少记录异常

编辑:

如果在Start之前遇到EOF ,则必须跳过复制步骤!

于 2016-06-23T14:06:16.127 回答
0

您在代码中犯了一个重大错误:您没有正确处理异常。两件事情:

  1. 永远抓不到Exception。要么只捕获一种类型的异常,要么指定要捕获的异常列表。在你的情况下,一个简单的IOException就足够了。

  2. 永远不要将 catch-block 留空。要么抛出一个新的异常,返回一个值,要么 - 在你的情况下 - 用e.printStackTrace().

当你做这两件事时,你会注意到你的代码抛出一个IOException,因为你关闭你的bw-Stream 太早了。向下移动bw.close()到 where br.close()is。

现在,当你这样做了,你的代码几乎可以工作了。唯一的事情是 - 你现在得到一个NullPointerException. line这是因为您在阅读完所有条目后不会更改您的内容。解决这个问题的简单方法是从

while(line.equals("Start")) { ...

if(line.equals("Start")) { ...

此外,您的代码中还有一些其他不那么整洁的东西,但我暂时不说 - 经验是随着时间而来的。

于 2016-06-23T14:13:56.790 回答
0

对于 Java 8:

List<String> stopWords = Arrays.asList("Start", "End");
try (BufferedReader reader = new BufferedReader(input))) {
   List<String> lines = reader.lines()
     .map(String::trim)
     .filter(s -> !StringUtils.isEmpty(s) && !stopWords.contains(s))
     .collect(Collectors.toList());
}
于 2017-08-24T14:32:53.363 回答