Java / Using String
What is the maximum length of a String in Java?
The maximum length of a String is Integer.MAX_VALUE, which is 2^31 - 1. The return type of String length() method is int and an int could have only Integer.MAX_VALUE as its largest value.
Also Integer.MAX_VALUE is the maximum value that could be allocated for an array in Java.
More Related questions...