Here you can find the source of getWidthForText(String txt, Font font)
public static int getWidthForText(String txt, Font font)
//package com.java2s; //License from project: Apache License import java.awt.Font; import java.awt.Toolkit; public class Main { public static int getWidthForText(String txt, Font font) { java.awt.FontMetrics fm = Toolkit.getDefaultToolkit().getFontMetrics(font); int width = fm.stringWidth(txt); return width; }/*from ww w. j a v a 2 s. c o m*/ }