0

为了澄清我的问题,我正在写一个位于我的计算机上的文本文件,其中已经包含文本内容。下面的代码写入文本文件而不删除其任何内容,但现在我想指定它写入的行。目前,它有一个 if 语句来捕获该行中是否存在“完成”一词,因为它确实写入文件,所以它被识别。我的问题是试图让它写入写着“完成”的行。它写入最底部的最后一行代码。我怎样才能解决这个问题?

方法 readNumLines 是文件中包含的行数。Reading 是文本文件名。

int i = 0;
    BufferedReader reader = new BufferedReader(new FileReader(path+reading));
    BufferedWriter writer = new BufferedWriter(new FileWriter(path+reading, true));
    String line = null;
    while ((line = reader.readLine()) != null && i < readNumLines(reading)-1) {
        if(line.contains("Done")){
            writer.write("\nCHECK!\n");
            writer.close();
        }
        i++;
    }
4

3 回答 3

1

我建议将整个文件读入一个变量(字符串、数组或列表)。然后,您可以轻松地修改特定行并将所有内容写回文件。

1) 将文件读入数组:将 文本文件内容逐行存入数组

2) 操作数组:

for (int i = 0; i < lines.length; i++) {
            String line = lines[i];
            if (line.contains("Done")) {
                lines[i] = line + "\nCHECK!\n";
                break;
            }
}

3) 将字符串数组写入文件: 使用 Java 将字符串数组写入文件 - 单独的行

该问题也可能与此行有关:

writer.write("\nCHECK!\n");

第一个“\n”强制将“CHECK”写入新行。这假定您的“完成”行是最后一行并且不以“\n”结尾。

于 2014-10-23T20:15:07.067 回答
0

使用Java 8时,您可以尝试以下操作:

final Path myFile = Paths.get("path\\to\\yourFile.txt");
final int lineNumWhereToInsert = 2;
final String stringToInsert = "insertion test";

try {
    final List<String> lines = Files.lines(myFile).collect(Collectors.toList());
    lines.add(Math.min(lineNumWhereToInsert, lines.size()), stringToInsert);

    try (final BufferedWriter out = Files.newBufferedWriter(myFile, Charset.forName("UTF-8"))) {
        for (final String line : lines) {
            out.append(line).append(System.lineSeparator());
        }
    }
} catch (IOException) {
    ex.printStrackTrace();
}
于 2014-10-23T20:31:39.347 回答
0

这是我的做法。想法很简单,将包括新行在内的所有内容写入临时文件,然后将临时文件重命名为原始文件并删除原始文件。注意:我从我的一个项目中提取了此代码,因此我可能忘记更改某些内容。因此,如果它不起作用,请告诉我,我会看看。希望这可以帮助 :)

            String line;//You need to specify those
            File infile;

            // temp file
            File outFile = new File("$$$$$$$$.tmp");

            // input
            FileInputStream fis = null;
            try {
                fis = new FileInputStream(inFile);
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            }
            BufferedReader in = new BufferedReader(new InputStreamReader(fis));

            // output         
            FileOutputStream fos = null;
            try {
                fos = new FileOutputStream(outFile);
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            }
            PrintWriter out = new PrintWriter(fos);
            String thisLine = "";
            int i =1;
            try {
                while ((thisLine = in.readLine()) != null) {
                   if(in.contains("Done"))//the check for done 
                       out.println(line);                  
                   }
                   out.println(thisLine);
                   i++;
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
            out.flush();
            out.close();
            try {
                in.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            inFile.delete();
            outFile.renameTo(inFile);
于 2014-10-23T20:22:16.340 回答