gpt4 book ai didi

java - 使用 Apache Commons Configuration 将用户输入的路径传递到 .properties 文件中

转载 作者:行者123 更新时间:2023-12-01 12:46:05 26 4
gpt4 key购买 nike

我有一个简单的 GUI,会弹出并要求用户输入几个字段。其中一个字段用于配置路径。我获取用户在 GUI 中输入的内容(JTextField),将其保存到字符串中,并使用 Apache Commons 配置库(我使用 PropertiesConfiguration.setProperty() )根据用户输入的内容更新 .properties 文件。问题是由于字符的转义方式,这不起作用。如果用户输入:

\:cust\:authprocessor

然后我希望在属性文件中更新该确切的字符串,使其看起来像这样:

路径 =\:cust\:authprocessor

相反,它看起来像这样:

路径 =\\:cust\\:authprocessor

我尝试过使用 String.replace(),但这不起作用,因为它们被转义了。关于如何处理有什么想法吗?

最佳答案

这是不可能的。 \是属性中的特殊字符。如果您存储这些属性,它们将被转义。

在这里您可以看到source code of java.util.properties

private String saveConvert(String theString,
boolean escapeSpace,
boolean escapeUnicode) {
int len = theString.length();
int bufLen = len * 2;
if (bufLen < 0) {
bufLen = Integer.MAX_VALUE;
}
StringBuffer outBuffer = new StringBuffer(bufLen);

for(int x=0; x<len; x++) {
char aChar = theString.charAt(x);
// Handle common case first, selecting largest block that
// avoids the specials below
if ((aChar > 61) && (aChar < 127)) {
if (aChar == '\\') {
outBuffer.append('\\'); outBuffer.append('\\');
continue;
}
outBuffer.append(aChar);
continue;
}
switch(aChar) {
case ' ':
if (x == 0 || escapeSpace)
outBuffer.append('\\');
outBuffer.append(' ');
break;
case '\t':outBuffer.append('\\'); outBuffer.append('t');
break;
case '\n':outBuffer.append('\\'); outBuffer.append('n');
break;
case '\r':outBuffer.append('\\'); outBuffer.append('r');
break;
case '\f':outBuffer.append('\\'); outBuffer.append('f');
break;
case '=': // Fall through
case ':': // Fall through
case '#': // Fall through
case '!':
outBuffer.append('\\'); outBuffer.append(aChar);
break;
default:
if (((aChar < 0x0020) || (aChar > 0x007e)) & escapeUnicode ) {
outBuffer.append('\\');
outBuffer.append('u');
outBuffer.append(toHex((aChar >> 12) & 0xF));
outBuffer.append(toHex((aChar >> 8) & 0xF));
outBuffer.append(toHex((aChar >> 4) & 0xF));
outBuffer.append(toHex( aChar & 0xF));
} else {
outBuffer.append(aChar);
}
}
}
return outBuffer.toString();
}

关于java - 使用 Apache Commons Configuration 将用户输入的路径传递到 .properties 文件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24691864/

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