如何在java属性中删除转义额外斜杠(How to remove escape extra slash in java properties)
我使用以下内容将一些值写入.properties文件。 这段代码适用于一个小问题,写入的值就是这样
C\:/MyDir/MyDir2/Downloads/SomeOrder.txt
使用额外的斜线,这不起作用。 对于我的生活,我无法摆脱额外的斜线。 我试过URLEncode.encode但没有去。
谢谢你的帮助。
I am using the following to write some values to a .properties file. this code works with one small problem the value that gets written is like this
C\:/MyDir/MyDir2/Downloads/SomeOrder.txt
With an extra slash, this does not work. For the life of me I can't get rid of the extra slash. I have tried URLEncode.encode but no go.
Thanks for any help.
满意答案
没关系。 这就是写入属性文件的意思 。
键和元素字符#,!,=和:使用前面的反斜杠写入,以确保它们已正确加载。
从属性文件中读取值的代码将适当地取消它。
That's fine. That's how it's meant to be written to the properties file.
From the Properties.store documentation:
The key and element characters #, !, =, and : are written with a preceding backslash to ensure that they are properly loaded.
The code that reads the value from the properties file will unescape it appropriately.
2015-04-02
相关问答
另外,请参考javadoc上的Property类的load(Reader reader)方法 在load(Reader reader)方法文档中说 键包含从第一个非空格字符开始的行中的所有字符,直到但不包括除行终止符之外的第一个未转义的'=' , ':'或空白字符。 所有这些密钥终止字符可以通过用前面的反斜杠字符进行转义而被包括在密钥中; 例如, \:\=
将是双字符键":=". 可以使用\r和\n转义序列包括行终止符字符。 钥匙之后的任何空格都被跳过; 如果键后的第一个非空白字符为'='或':...
根据这种性能比较: https : //jsperf.com/dictionary-contains-key 最有效的方法是:
for(attr in newItem) {
if(defaults[attr] === undefined)
delete newItem[attr];
}
According to this performance comparison: https://jsperf.com/dictionary-contains-key The most effici...
如果你想从android中删除转义斜杠,你可以尝试这个....
String receivedString = "{\"property_type\":[\"residential\"],\"status\":[\"active\"],\"category\":[\"sale\"],\"page_size\":8,\"cur_page\":1}";
String changedString = receivedString.replaceAll("\"", "\"");
Log....
考虑使用StringUtils。 如果有一个方法来逃避像你的输入。 http://commons.apache.org/lang/api-2.5/org/apache/commons/lang/StringEscapeUtils.html#escapeJava(java.lang.String) Consider using StringUtils. If has a method to escape input like yours. http://commons.apache.org/lang...
您不需要在Java中作为语言或正则表达式转义正斜杠。 还要注意这样的块:
if (condition) {
return true;
} else {
return false;
}
更加紧凑和可读性如下: return condition;
所以在你的情况下,我相信你的方法应该是这样的: public boolean checkDate(String dateToCheck) {
return dateToCheck.matches("[0-9][0-9]/[0-9]...
我不知道为什么你想这样做,但下面的代码将为你工作。
var url = 'http://example.net/hi-how-are-you';
var pos = url.lastIndexOf('/');
url = url.substring(0,pos)+'//'+url.substring(pos+1);
console.log(url); I am not sure why you want to do that, but following code will work for...
您应该从重定向路径的末尾删除额外的尾部斜杠: return 301 https://$server_name$request_uri;
You should remove the extra trailing slash from the end of your redirection path: return 301 https://$server_name$request_uri;
额外的属性应该通过ext创建,但是通过project实例引用而不需要任何实例: project.dir或dir ,所以对脚本的第一个更改将是:
ext {
dir = null
}
task init << {
build()
}
task buildAll(type: Exec){
workingDir dir // ext.dir -> dir
commandLine 'cmd', '/c', "echo %JAVA_HOME%"
}
def build(){
ext...
您无法从属性文件中删除\的使用,因为这是定义要实现的属性文件的方式。 来自Javadoc for Properties 所有这些密钥终止字符都可以通过使用前面的反斜杠字符转义它们来包含在密钥中; 例如, \:\=
这条线 query=select * from users where id = 1
无效,因为它包含两个未转义的=字符。 第二个需要逃脱。 您可以以不同方式实现属性以不需要它,但它不是标准的属性文件。 存储属性的其他方法是XML,JSON和YAML。 我更喜欢YAML,它通常更简单...
没关系。 这就是写入属性文件的意思 。 从Properties.store文档: 键和元素字符#,!,=和:使用前面的反斜杠写入,以确保它们已正确加载。 从属性文件中读取值的代码将适当地取消它。 That's fine. That's how it's meant to be written to the properties file. From the Properties.store documentation: The key and element characters #, !, =,...
相关文章
1. 描述 尝试用多种方法读取属性文件。 测试打印系统属性; 测试读取、写入用户属性文件; 测试
...
+ - && || ! ( ) { } [ ] ^ " ~ * ? : \
...
If the configuration directory for a Solr core cont
...
我把log4j.properties文件放到"WEB-INF\classes"目录
...
我们现有的Hadoop集群已经运行了一段时间了 由于集群中的服务器分布在2个不同的机房,受跨机房带宽的
...
Vibrations in the ground are a poorly understood bu
...
删除集合中的文档,使用命令 db.集合名称.remove({删除条件}),例如,db.c1.remov
...
1、开发环境集成 1)在myeclipse环境集成 在windows-properties-tomca
...
Java 集合框架 早在Java 2中之前,Java就提供了特设类。比如:Dictionary,
...