I am going to have a string like "hello " world" as a hashmap key. The key is actually from user input, that's why it is possible to have something like that as a key. Is it okay?
|
Absolutely. The double-quote character is only "special" as far as Java source code is concerned. You can even escape it within Java itself:
Here the key itself is foo"bar - the backslash is just for escaping within the string literal. |
|||
|
|
|
Yes, of course. Even the 0-Character, which often is used as an End-of-String symbol in C is okey in Java, so there are really no constraints. |
|||
|
|
|
Sure. If the key is of type Just a reminder: assuming, the user enters:
then the Java literal is
|
||||
|
|
|
As the others told you, strings in java are allowed to contain all unicode characters, so for keys in a hashmap, you're fine. But be careful when creating SQL queries, http requests or similar using strings which contain unfiltered user input - your software may be open to SQL injection or cross site scripting attacks then. Using mechanisms like prepared statements instead of string concatenation will help in this case. |
|||
|
|