java get string size code example

Example 1: 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());

Example 2: java check for string length

String data = "Hello, World!";
int nameLength = data.length(); // 13

Example 3: length of string in java

str.length();

Example 4: java length of string

string.length()

Tags:

Java Example