Bufferedreader 无法读取整个文件

Bufferedreader fails to read whole file

所以我得到了这个奇怪的错误。 我想做的是:

  1. 打开 zip 文件,然后解压缩内容。
  2. 遍历文件的内容并修复文件的空白以及引用文件的位置,这在几个 XML 中。
  3. 压缩包内容。

第 1 点和第 3 点我已经涵盖了 - 但是当我尝试读取所有 xml 文件时,出现了问题。 我有我想在数组列表中读取的所有 xml 文件(大约 30 个文件),然后我想像这样读取它们(注意:此方法在 for 循环中调用,循环遍历 30 xml 个文件):

private static void readXMLFile(String path) {
    // System.out.println("Deleting");
    Iterator<String> iter = listToRecreate.iterator();
    while (iter.hasNext()) {
        String str = iter.next();
        if (listToRecreate.size() > 0) {
            iter.remove();
        }
    }

    File mFile = new File(path);
    // System.out.println(path);
    // System.out.println("Beginning to read");

    BufferedReader br = null;
    try {
        br = new BufferedReader(new FileReader(mFile.getPath()));
        for (String sCurr = ""; (sCurr = br.readLine()) != null;) {
            // System.out.println(sCurr);
            listToRecreate.add(sCurr);
        }
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        try {
            br.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    editFile(path);
}

然后发生的是只读取了一半的文件内容。奇怪的是,如果我取出一个 xml 文件并尝试读取它,它就会正常工作。这里可能是什么错误? 提前致谢:)

编辑: 我如何写入文件

private static void editFile(String path) {
    // System.out.println(path);
    try {
        PrintWriter writer = new PrintWriter(new File(path));
        for (String str : listToRecreate) {
            // System.out.println(str);
            int j = 0;
            for (String tag : listOfTagNames) {
                str = replaceTag(str, listOfTagNames.get(j));
                j++;
            }
            // System.out.println(str);
            writer.println(str);
        }
        writer.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
}

编辑 2: 我刚刚意识到这可能是我的解压缩方法搞乱了我。 更新:此代码现在有效。感谢http://www.avajava.com/tutorials/lessons/how-do-i-unzip-the-contents-of-a-zip-file.html

public static void unzipFile(String filePath, String destPath) {
    try {
        ZipFile zipFile = new ZipFile(filePath);
        Enumeration<?> enu = zipFile.entries();
        while (enu.hasMoreElements()) {
            ZipEntry zipEntry = (ZipEntry) enu.nextElement();

            String name = zipEntry.getName();
            long size = zipEntry.getSize();
            long compressedSize = zipEntry.getCompressedSize();
            //System.out.printf("name: %-20s | size: %6d | compressed size: %6d\n",
                   // name, size, compressedSize);

            File file = new File(destPath + File.separator + name);
            if (name.endsWith("/")) {
                file.mkdirs();
                continue;
            }

            File parent = file.getParentFile();
            if (parent != null) {
                parent.mkdirs();
            }

            InputStream is = zipFile.getInputStream(zipEntry);
            FileOutputStream fos = new FileOutputStream(file);
            byte[] bytes = new byte[1024];
            int length;
            while ((length = is.read(bytes)) >= 0) {
                fos.write(bytes, 0, length);
            }
            is.close();
            fos.close();

        }
        zipFile.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

对于那些将来可能会遇到同样问题的人。 我发现是我的解压方法没有完全解压我的文件,我的 read/write 方法被检查出来了。 我已经更新了代码,所以解压缩方法可以工作。

感谢所有试图帮助我的人!