Answers for "java 11 how to find size of a string"

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
0

length of string java

String txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
System.out.println("The length of the txt string is: " + txt.length());
Posted by: Guest on October-01-2021

Code answers related to "java 11 how to find size of a string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language