每次都要将数据写入新文件

时间:2016-04-01 11:24:31

标签: java

我正在编写一个程序,其中有一些数据,我要从多个文档中选择并创建一个新文件。

以下是我的代码。

public class IndexFiles extends SwingWorker<Void, String> {
    private String inputPath;

    public IndexFiles(String inputPath) {
        this.inputPath = inputPath;
    }

    @Override
    protected Void doInBackground() throws Exception {
        File directory = new File(inputPath);
        countFilesInDirectory(directory);
        return null;
    }

    void countFilesInDirectory(File directory) throws IOException {
        System.out.println("entered");
        File[] list = directory.listFiles();
        System.out.println("length is " + list.length);
        for (int i = 0; i < list.length; i++) {
            GenerateFiles(list[i].getAbsoluteFile().toString());
        }

    }

    private void GenerateFiles(String inputfilePath) throws IOException {
        String input = inputfilePath;
        URL url = new URL("file:///" + input);
        BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
        String inputLine;

        String tempPath = inputfilePath.substring(0, inputfilePath.lastIndexOf("\\") + 1);
        String secPath = tempPath.substring(0, tempPath.lastIndexOf("\\"));
        String finalPath = secPath.substring(0, secPath.lastIndexOf("\\")) + "\\OP\\";

        File outPath = new File(finalPath);
        if (!outPath.exists()) {
            outPath.mkdir();
        }
        File temp = new File(finalPath + "temp.txt");
        FileOutputStream fos = new FileOutputStream(temp, true);

        if (!temp.exists()) {
            temp.createNewFile();
        }
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(fos));
        bw.write("");
        while ((inputLine = in.readLine()) != null) {
            if (inputLine.contains("/section")) {
                break;
            }
            if (inputLine.contains("DOCTYPE")) {
                inputLine = inputLine.replace("<!DOCTYPE html>", "");
            }
            if (inputLine.contains("html")) {
                inputLine = inputLine.replaceAll(
                        "<html xmlns=\"http://www.w3.org/1999/xhtml\"><head><meta http-equiv=\"content-type\" content=\"text/html\" charset=\"utf-8\"/>(.*)<section>",
                        "");
            }
            if (inputLine.contains("?")) {
                inputLine = inputLine.replace("<?", "");
            }
            if (inputLine.contains("pb")) {
                inputLine = inputLine.replaceAll("pb label=\"(.*)\"?>", "");
            }
            if (!(inputLine.trim().isEmpty())) {
                bw.append(inputLine);
                bw.newLine();
            }
        }
        bw.close();
        in.close();

    }

}

这个程序第一次运行正常。该文件正在正确创建。但是当我再次运行它时会出现问题,它会被附加而不是创建新的新数据。我确信这是因为FileOutputStream fos = new FileOutputStream(temp, true);,如果我删除true,每次文件完成时,都会更新新副本。但我的要求是每次运行程序时都要创建一个新数据,而不是附加到现有程序。

我说10个文件,我运行程序,所有10个文件的内容都应该进入临时文件。我再次运行它,它应该是,我清除临时文件。写下这10个文件的内容。但是现在,我运行程序,将数据写入临时文件,我再次运行它,它会附加相同的10个文件数据。我想要替换完整内容,而不是单个文件内容。我第一次运行时,将10个文件数据写入临时文件。我再次运行它,应该清除临时文件并写入这10个文件数据。

请让我知道我该怎么做。

由于

2 个答案:

答案 0 :(得分:1)

选择一个:

  • 在countFilesInDirectory中创建没有true-flag的BufferedWriter,并将其作为参数传递给GenerateFiles
  • 添加代码以在countFilesInDirectory
  • 中的for循环之前删除临时文件

答案 1 :(得分:1)

使用

std::string file = __FILE__;
size_t index;
for (index = file.size(); index > 0; index--)
{
    if (file[index - 1] == '\\' || file[index - 1] == '/')
        break;
}
std::cout << file.substr(index);

而不是

 FileOutputStream fos = new FileOutputStream(temp);

对于FileOutputStream(文件文件,布尔附加)构造函数 如果append设置为true,则您编写的数据将附加到文件的末尾,而不是覆盖已存在的数据