您可以
()在
=和之前放置反斜杠转义字符
:。
或者最好使用下面的代码来打印出如何 转义 您的财产:
Properties props = new Properties(); props.setProperty("url", "http://www.example.org/test="); props.store(System.out, null);输出:
#Wed Jan 12 14:30:39 GMT 2011url=http://www.example.org/test=
另外,请查看Java
API信息



