Possible Duplicate:
Escaping equal sign in properties files
In a .properties file, can I use the character ‘=’ after the first one?
Like this:
url=http://www.example.org/test=
Is it allowed and where can I know that it is allowed if it indeed is?
So far it seems to be working but I simply am not too sure it won’t break later on.
You may put backslash escape character
(\)before=and:.Or better use the following code that prints out how your property should be escaped:
Output:
Also, please check out Java API information