java中获取字符串宽度

时间:2023-01-06 23:58:34

public static void main(String[] args) {  

    Font f = new Font("宋体", Font.BOLD, 12);  

    FontMetrics fm = sun.font.FontDesignMetrics.getMetrics(f);  

    // 高度  

    System.out.println(fm.getHeight());  

    // 单个字符宽度  

    System.out.println(fm.charWidth('A'));  

    // 整个字符串的宽度  

    System.out.println(fm.stringWidth("宋A"));