gpt4 book ai didi

java - 为什么追加到文件时,Windows 和 Linux 机器上的 file-io 结果不同?

转载 作者:可可西里 更新时间:2023-11-01 10:06:12 25 4
gpt4 key购买 nike

我有一个类通过读取上传的文件将新配置附加到现有配置。问题是它在 Windows 上运行良好,但在 Linux 上却不是这样——我正在使用 Servlet 接收文件。新配置必须从一个新行开始,并且任何地方都不能有空行。以下是代码。

    public class ConfigGen {

public static void process(File configFile, File uploadedFile)
throws IOException {
synchronized (configFile) {
if (shouldAppend(configFile, uploadedFile)) {
StringBuilder builder = readFile(uploadedFile);
StringBuilder orig = readFile(configFile);
FileWriter writer = new FileWriter(configFile, true);
// If the content ends with a new line character then remove the
// new line from content to be appended
if (orig.toString().endsWith(
System.getProperty("line.separator"))) {
writer.append(builder.substring(1));
} else {
writer.append(builder);
}
writer.flush();
writer.close();
}
}
}

/**
* @param configFile
* @param uploadedFile
* @return true if config change is required, false otherwise
* @throws IOException
*/
private static final boolean shouldAppend(File configFile, File uploadedFile)
throws IOException {
synchronized (configFile) {
String originalConfig = readFile(configFile).toString().trim();
String newAddition = readFile(uploadedFile).toString().trim();
String newSecGroup = newAddition.substring(0,
newAddition.indexOf(":"));
return !originalConfig.contains(newSecGroup);
}
}

private static final StringBuilder readFile(File file) throws IOException {
BufferedReader br = new BufferedReader(new FileReader(file));
String str = "";
StringBuilder builder = new StringBuilder();
while ((str = br.readLine()) != null) {
builder.append(System.getProperty("line.separator") + str);
}
br.close();
return builder;
}
}

附加新配置的文件将在很多时候使用 vim 或类似的编辑器手动编辑。我得到的行为是 - 在 linux 机器上。如果文件已使用 vim 编辑,则新文本将追加到额外的新行之后,此后任何后续更新从下一行开始出现 - 直到使用 vim 编辑它。

例如:假设我在文件中有以下内容 - 最初是使用 vim 编写的。

sg-e696a08c:
classes:
tomcat6:
myappmodule:
endpoint: "10.0.2.11"
port: "1443"

并且发布了包含以下内容的新文件

sg-fde2a89d:
classes:
tomcat7:
servmod:
db: "xyz.com"
port: "1336"

配置文件的预期内容是。

sg-e696a08c:
classes:
tomcat6:
myappmodule:
endpoint: "10.0.2.11"
port: "1443"
sg-fde2a89d:
classes:
tomcat7:
servmod:
db: "xyz.com"
port: "1336"

但是我得到了

sg-e696a08c:
classes:
tomcat6:
myappmodule:
endpoint: "10.0.2.11"
port: "1443"

sg-fde2a89d:
classes:
tomcat7:
servmod:
db: "xyz.com"
port: "1336"

注意有一个空行。在使用 vim 编辑文件之前,发布的任何后续文件都不会产生任何空的新行。我不确定为什么会出现这种行为。 window 的结果很好。由于这种行为,生成的配置变得无效。在 Windows 上,我使用 Notepad++ 来编辑文件。

vim 是否在文件末尾添加了一些我可能遗漏的特殊字符或其他内容?我应该怎么做才能解决这个问题,为什么会出现这种行为?

最佳答案

在 readFile() 中不必要地添加换行符:

//builder.append(System.getProperty("line.separator") + str);
builder.append(str).append(System.getProperty("line.separator"));

注释代码(来自流程)似乎多余。

 //if (orig.toString().endsWith(
// System.getProperty("line.separator"))) {
// writer.append(builder.substring(1));
//} else {
// writer.append(builder);
//}

// just use this:
writer.append(builder);

除此之外值得一提的是,如果 fileformat=unix,用 Vim 编写的文件以换行结尾,如果 fileformat=dos,则以回车+换行结束.但是,在这种情况下,这应该无关紧要,因为您使用了 trim()

关于java - 为什么追加到文件时,Windows 和 Linux 机器上的 file-io 结果不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22360974/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com