Normal Java resource bundles
| Note |
|---|
| title | API: java.util.Properties |
|---|
|
The method does not treat a backslash character, \, before a non-valid escape character as an error; the backslash is silently dropped. For example, in a Java string the sequence "\z" would cause a compile time error. In contrast, this method silently drops the backslash. Therefore, this method treats the two character sequence "\b" as equivalent to the single character 'b'. |
The table describes how to escape some special charaters.
The special chars \', { and }:
| No Format |
|---|
escape ' with another '
|
| | (double-single quote) |
| No Format |
|---|
escape \ with another \
|
| | (double backslash) |
| No Format |
|---|
enclose } with '
|
| |
| No Format |
|---|
enclose { with '
|
| |