
- Java.lang - Home
- Java.lang - Boolean
- Java.lang - Byte
- Java.lang - Character
- Java.lang - Character.Subset
- Java.lang - Character.UnicodeBlock
- Java.lang - Class
- Java.lang - ClassLoader
- Java.lang - Compiler
- Java.lang - Double
- Java.lang - Enum
- Java.lang - Float
- Java.lang - InheritableThreadLocal
- Java.lang - Integer
- Java.lang - Long
- Java.lang - Math
- Java.lang - Number
- Java.lang - Object
- Java.lang - Package
- Java.lang - Process
- Java.lang - ProcessBuilder
- Java.lang - Runtime
- Java.lang - RuntimePermission
- Java.lang - SecurityManager
- Java.lang - Short
- Java.lang - StackTraceElement
- Java.lang - StrictMath
- Java.lang - String
- Java.lang - StringBuffer
- Java.lang - StringBuilder
- Java.lang - System
- Java.lang - Thread
- Java.lang - ThreadGroup
- Java.lang - ThreadLocal
- Java.lang - Throwable
- Java.lang - Void
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
Java.lang.StringBuilder.append() Method
Description
The java.lang.StringBuilder.append(char[] str, int offset, int len) method appends the string representation of a subarray of the char array argument to this sequence.
Characters of the char array str, starting at index offset, are appended, in order, to the contents of this sequence. The length of this sequence increases by the value of len.
Declaration
Following is the declaration for java.lang.StringBuilder.append() method
public StringBuilder append(char[] str, int offset, int len)
Parameters
str − This is the characters to be appended.
offset − This is the index of the first char to append.
len − This is the number of chars to append.
Return Value
This method returns a reference to this object.
Exception
NA
Example
The following example shows the usage of java.lang.StringBuilder.append() method.
package com.tutorialspoint; import java.lang.*; public class StringBuilderDemo { public static void main(String[] args) { StringBuilder str = new StringBuilder("amrood "); System.out.println("string = " + str); // char array char[] cArr = new char[] {'a','d','m','i','n','i','s','t','r','a','t','o','r'}; /* appends the string representation of char array argument to this StringBuilder with offset at index 0 and length as 5 */ str.append(cArr, 0, 5); // print the StringBuilder after appending System.out.println("After append = " + str); } }
Let us compile and run the above program, this will produce the following result −
string = amrood After append = amrood admin