Answers for "how to find the capacity for the string in java"

5

how to get the width and height of a string in java

String text = "Hello World";
Font font = new Font("Arial", Font.PLAIN, 12);
FontRenderContext frc = new FontRenderContext(new AffineTransform(), true, true);

int textwidth = (int)(font.getStringBounds(text, frc).getWidth());
int textheight = (int)(font.getStringBounds(text, frc).getHeight());
Posted by: Guest on April-29-2020
2

String length() method in java

// String length() method example
public class StringLengthJava
{
   public static void main(String[] args)
   {
      String str1 = "flowerbrackets";
      String str2 = "helloworld";
      System.out.println("string length : " + str1.length());
      System.out.println("string length : " + str2.length());
   }
}
Posted by: Guest on December-08-2020

Code answers related to "how to find the capacity for the string in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language