Hi,
The \ character is already escaped by Karaf Properties implementation.
Try to use:
keyA="\\"
It will be equivalent to \\\\ (with the first \ as escape character).
Regards
JB
On 03/21/2011 08:03 AM, ext2 wrote:
Hi:
Karaf support using Properties files to store dynamic
configurations. But it seems the escape value of '\' is not correctly. For
example: if I write such a properties:
keyA=\\\\
The value of KeyA should be two '\' character. But karaf's configurations is
readed the value as a single '\' character.
Why? Is it a bug?
Thanks a any suggestion;