Excluding max length, what limitations does a string in java have?
Are there things I cant put in one? Characters they wont accept?
Any would be a great help :)
|
Depending on your usage scenario: Java uses UTF-16 for String representation meaning that Strings in Java might use more Memory than UTF-8/ASCII/ISO-XXXXX. |
|||||
|
|
Java strings can contain any data you like, they're binary strings. However, certain functions may not work with malformed strings (e.g. containing \x00), depending on your specified character encoding. You can (probably) rely on the standard methods to work, but keep in mind that by inserting "bad" characters you're abusing the type, and you may break other people's code. |
|||
|
|
|
I'm not sure, but maybe there is a limit on the length of the string Integer.MAX_VALUE
|
|||||
|
String, or do you mean "text input data"? – Raedwald Oct 5 '11 at 15:02