Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|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
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. – Mecki Nov 3 '08 at 12:33
@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

2 Answers

up vote 32 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.

share|improve this answer

It doesn't always need to be toolkit-dependent or one doesn't always need use the FontMetrics approach since it requires one to first obtain a graphics object which is absent in a web container or in a headless enviroment.

I Have tested this in a web servlet and it does calculate the text width..

String text = "Hello World";
AffineTransform affinetransform = new AffineTransform();     
FontRenderContext frc = new FontRenderContext(affinetransform,true,true);     
Font font = new Font("Tahoma", Font.PLAIN, 12);
int textwidth = (int)(font.getStringBounds(text, frc).getWidth());
int textheight = (int)(font.getStringBounds(text, frc).getHeight());

======================================================= Add the necessary values to these dimensions to create any required margin.

share|improve this answer
I don't think creating an affineTransform and a fontRenderContext this way will result in a good behaviour. I guess font.getTransfrom() would be more logical. – Lyth Mar 7 at 15:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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