string.substring , StringBuilder.
Pre Java7u6, substring String, ( char) . , :
String(int offset, int count, char value[]) {
this.value = value;
this.offset = offset;
this.count = count;
}
, :
Arrays.copyOfRange(value, offset, offset+count);
, Arrays.copyOfRange System.arraycopy, , , , append.