How to calculate the length (in pixels) of a string in Java?

Preferable without using Swing.

EDIT: I would like to draw the string using the drawString() in Java2D and use the length for word wrapping.

link|improve this question

Without Swing? What device are you using? What font? What size? What style? All these things change the display width. – S.Lott Nov 3 '08 at 12:31
@S. Lott. You have it in one. I was tempted to close this as a non-question. – David Arno Nov 3 '08 at 12:34
@David Arno: I'm a softie on the n00bz. I'll add the [beginner] tag. – S.Lott Nov 3 '08 at 12:39
For .NET equivalent there is TextRenderer class, see stackoverflow.com/questions/604298/… – Spoike Sep 22 '09 at 9:01
feedback

2 Answers

up vote 23 down vote accepted

If you just want to use AWT, then use Graphics.getFontMetrics (optionally specifying the font, for a non-default one) to get a FontMetrics and then FontMetrics.stringWidth to find the width for the specified string.

For other toolkits, you'll need to give us more information - it's always going to be toolkit-dependent.

link|improve this answer
feedback

How are you going to draw the string? With AWT? Or with some other toolkit? The size of the string in pixels depends on the drawing API that will draw the pixel later on (and of course which font you use and what font size and if the font is bold/italic, etc.). W/o knowing the drawing API and the font properties, a string has no size whatsoever.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.