Wednesday, July 3, 2024
HomeLanguagesJavaStringBuilder setLength() in Java with Examples

StringBuilder setLength() in Java with Examples

The setLength(int newLength) method of StringBuilder is used to set the length of the character sequence equal to newLength.For every index k greater than 0 and less than newLength. If the newLength passed as argument is less than the old length, the old length is changed to the newLength.If the newLength passed as argument is greater than or equal to the old length, null characters (‘\u0000’) are appended at the end of old sequence so that length becomes the newLength argument. Syntax:

public void setLength(int newLength)

Parameters: This method accepts one parameter newLength which is Integer type value refers to the new length of sequence you want to set. Returns: This method returns nothing. Exception: If the newLength is negative then IndexOutOfBoundsException. Below programs illustrate the java.lang.StringBuilder.setLength() method: Example 1: 

Java




// Java program to demonstrate
// the setLength() Method.
 
class GFG {
 
    public static void main(String[] args)
    {
        // create a StringBuilder object
        // with a String pass as parameter
        StringBuilder str
            = new StringBuilder("WelcomeGeeks");
 
        // print string
        System.out.println("String length = "
                           + str.length() +
                  " and contains = " + str);
 
        // set length equal to 10
        str.setLength(10);
 
        // print string
        System.out.println("After setLength() String = "
                           + str.toString());
    }
}


Output:

String length = 12 and contains = WelcomeGeeks
After setLength() String = WelcomeGee

Example 2: 

Java




// Java program to demonstrate
// the setLength() Method.
 
class GFG {
    public static void main(String[] args)
    {
 
        // create a StringBuilder object
        // with a String pass as parameter
        StringBuilder str
            = new StringBuilder("Tony Stark will die");
 
        // print string
        System.out.println("String length = "
                           + str.length() +
           " and contains = \"" + str + "\"");
 
        // set length equal to 25
        str.setLength(25);
 
        // print string
        System.out.println("After setLength() String = \""
                           + str.toString() + "\"");
    }
}


Output:

String length = 19 and contains = "Tony Stark will die"
After setLength() String = "Tony Stark will die      "

Example 3: When negative new length is passed: 

Java




// Java program to demonstrate
// Exception thrown by the setLength() Method.
 
class GFG {
    public static void main(String[] args)
    {
 
        // create a StringBuilder object
        // with a String pass as parameter
        StringBuilder str
            = new StringBuilder("Tony Stark");
 
        try {
            // pass length -15
            str.setLength(-15);
        }
        catch (Exception e) {
 
            e.printStackTrace();
        }
    }
}


Output:

java.lang.StringIndexOutOfBoundsException: String index out of range: -15
    at java.lang.AbstractStringBuilder.setLength(AbstractStringBuilder.java:207)
    at java.lang.StringBuilder.setLength(StringBuilder.java:76)
    at GFG.main(File.java:15)

References: https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuilder.html#setLength(int)

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments