StringBuffer in Java

string buffer is similar to String, but the difference is string cannot be modified but String Buffer is modified. String Buffer is thread safe and mutable sequence of characters. At any point in time it contains some particular sequence of characters, but the length and content of the sequence can be changed through certain method calls.
String buffer methods are synchronized and used for multiple threads.
The basic operations are performed in string buffer is append, insert. These are performed by their methods which are overloaded to accept their data of any type. Each effectively converts a datum to a string and then appends or inserts the character of that String to the string buffer.
Append method always adds these characters at the end of the buffer. The insert method adds the characters at a specified point.
Every string buffer has a capacity. The length of the character sequence is does not exceed the capacity. So here is necessary to allocate the new buffer array. It made larger automatically when the internal buffer overflows.
String buffer is released in Java 5 version.
Constructors in String Buffer. The default size of string buffer is 16.

Constructors in String Buffer.

ConstructorDescription
StringBuffer(CharSequence seq)It creates a string buffer, which has the same characters as given
StringBuffer()It creates an empty string buffer with the initial capacity of 16.
StringBuffer(String str)It creates a string buffer with the given string.
StringBuffer(int capacity)It creates an empty string buffer with the mentioned capacity as length.

Methods in StringBuffer:

The below methods are taken from the source website.

Modifier and TypeMethod and Description
StringBufferappend(boolean b)Appends the string representation of the boolean argument to the sequence.
StringBufferappend(char c)Appends the string representation of the char argument to this sequence.
StringBufferappend(char[] str)Appends the string representation of the char array argument to this sequence.
StringBufferappend(char[] str, int offset, int len)Appends the string representation of a subarray of the char array argument to this sequence.
StringBufferappend(CharSequence s)Appends the specified CharSequence to this sequence.
StringBufferappend(CharSequence s, int start, int end)Appends a subsequence of the specified CharSequence to this sequence.
StringBufferappend(double d)Appends the string representation of the double argument to this sequence.
StringBufferappend(float f)Appends the string representation of the float argument to this sequence.
StringBufferappend(int i)Appends the string representation of the int argument to this sequence.
StringBufferappend(long lng)Appends the string representation of the long argument to this sequence.
StringBufferappend(Object obj)Appends the string representation of the Object argument.
StringBufferappend(String str)Appends the specified string to this character sequence.
StringBufferappend(StringBuffer sb)Appends the specified StringBuffer to this sequence.
StringBufferappendCodePoint(int codePoint)Appends the string representation of the codePoint argument to this sequence.
intcapacity()Returns the current capacity.
charcharAt(int index)Returns the char value in this sequence at the specified index.
intcodePointAt(int index)Returns the character (Unicode code point) at the specified index.
intcodePointBefore(int index)Returns the character (Unicode code point) before the specified index.
intcodePointCount(int beginIndex, int endIndex)Returns the number of Unicode code points in the specified text range of this sequence.
StringBufferdelete(int start, int end)Removes the characters in a substring of this sequence.
StringBufferdeleteCharAt(int index)Removes the char at the specified position in this sequence.
voidensureCapacity(int minimumCapacity)Ensures that the capacity is at least equal to the specified minimum.
voidgetChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)Characters are copied from this sequence into the destination character array dst.
intindexOf(String str)Returns the index within this string of the first occurrence of the specified substring.
intindexOf(String str, int fromIndex)Returns the index within this string of the first occurrence of the specified substring, starting at the specified index.
StringBufferinsert(int offset, boolean b)Inserts the string representation of the boolean argument into this sequence.
StringBufferinsert(int offset, char c)Inserts the string representation of the char argument into this sequence.
StringBufferinsert(int offset, char[] str)Inserts the string representation of the char array argument into this sequence.
StringBufferinsert(int index, char[] str, int offset, int len)Inserts the string representation of a subarray of the str array argument into this sequence.
StringBufferinsert(int dstOffset, CharSequence s)Inserts the specified CharSequence into this sequence.
StringBufferinsert(int dstOffset, CharSequence s, int start, int end)Inserts a subsequence of the specified CharSequence into this sequence.
StringBufferinsert(int offset, double d)Inserts the string representation of the double argument into this sequence.
StringBufferinsert(int offset, float f)Inserts the string representation of the float argument into this sequence.
StringBufferinsert(int offset, int i)Inserts the string representation of the second int argument into this sequence.
StringBufferinsert(int offset, long l)Inserts the string representation of the long argument into this sequence.
StringBufferinsert(int offset, Object obj)Inserts the string representation of the Object argument into this character sequence.
StringBufferinsert(int offset, String str)Inserts the string into this character sequence.
intlastIndexOf(String str)Returns the index within this string of the rightmost occurrence of the specified substring.
intlastIndexOf(String str, int fromIndex)Returns the index within this string of the last occurrence of the specified substring.
intlength()Returns the length (character count).
intoffsetByCodePoints(int index, int codePointOffset)Returns the index within this sequence that is offset from the given index by codePointOffset code points.
StringBufferreplace(int start, int end, String str)Replaces the characters in a substring of this sequence with characters in the specified String.
StringBufferreverse()Causes this character sequence to be replaced by the reverse of the sequence.
voidsetCharAt(int index, char ch)The character at the specified index is set to ch.
voidsetLength(int newLength)Sets the length of the character sequence.
CharSequencesubSequence(int start, int end)Returns a new character sequence that is a subsequence of this sequence.
Stringsubstring(int start)Returns a new String that contains a subsequence of characters currently contained in this character sequence.
Stringsubstring(int start, int end)Returns a new String that contains a subsequence of characters currently contained in this sequence.
StringtoString()Returns a string representing the data in this sequence.
voidtrimToSize()Attempts to reduce storage used for the character sequence.

Program for String Buffer Demo:class StringBuffTest
{
public static void main(String[] args)
{
StringBuffer sbf1 = new StringBuffer(“hello string buffer”);
StringBuffer sbf2 = new StringBuffer();
System.out.println(“before append, capacity of string buffer1 is”+sbf1.capacity());
sbf2.insert(0,”Hai”);
sbf2.append(“demo”);
sbf1.append(sbf2);
System.out.println(“sbf1…. is” + sbf1);System.out.println(“capacity string buffer1 is”+sbf1.capacity());
}
}

output as follows:

String Buffer
String Buffer

Program for the String Buffer Methods:

class BuffMethods
{
public static void main(String[] args)
{
StringBuffer sbf = new StringBuffer(“StringBuffer thread safe”);
System.out.println(sbf);int capacity=sbf.length();
int position;
for(int i=0;i<capacity;i++){
position=i+1;
System.out.println(“Character at positions=”+position+”\t”+””+sbf.charAt(i));}
String a = new String(sbf.toString());
position = a.indexOf(“thread”);
sbf.insert(position,”is”);
System.out.println(sbf);sbf.append(“it is synchronized”);
System.out.println(“Stringbuffer is”+sbf);

}
}

Output as follows:

String Buffer Methods
String Buffer Methods

Note:The above code written and tested in dev environment.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top