ResourceBundel vs Properties
Hello!I have just recently discovered the class ResourceBundel and now compare it to the nice class Properties.
It seems really nice but I got one big problem.
In my test.properties I have a value like:
path=folder1/folder2
If I call getProperty("path") with the Properties class I get:
folder1/folder2
If I call getProperty("path") with the ResourceBundel class I get:
folder2
Strange, the "/" seems important to ResourceBundel.
Is there a purpose with this?
Could I get around it in some easy way?
Best regards
Fredrik
