我用于确定适当字体大小的 while 循环太过分了……有时?

My while loop for determining an appropriate font size is going too far... sometimes?

我正在为学校做一个项目,要求我读取一个文件并用读取的数据制作一个条形图。我制作了一个 class 来制作 JFrame 并绘制矩形以将框架分成一个部分用于每个数据的名称(足球运动员姓名)和一个用于酒吧(球员年龄)的部分。我有一种方法是增加字体大小,直到最长的(打印的)字符串占用分配的宽度 space,并且 return 将在 paint 方法中使用该大小的字体.

它在创建初始 JFrame 时有效,但当我调整它的大小时,它有时会将字体大小 1 增加到大,但并非总是如此。我很茫然。控制台输出显示(对我来说)我的 while 循环条件不满足,但字体大小仍然增加了......任何见解将不胜感激。谢谢!

private Font myFont(int allowedW, int allowedH, int numData) {
    // needs to check length of font and size of JFrame and set font (size)
    // accordingly
    String longest = "";
    int fontSize = 1;
    Font f = new Font("SansSerif", Font.BOLD, fontSize);
    for (BarData b : this.graphData) {
        if (getFontMetrics(f).stringWidth(b.getName()) > getFontMetrics(f)
                .stringWidth(longest)) {
            longest = b.getName();
        }
    }
    while ((getFontMetrics(f).stringWidth(longest) < allowedW)){
            //&& ((getFontMetrics(f).getHeight() * numData) < allowedH)) {
            f = new Font("SansSerif", Font.BOLD, fontSize);
        System.out.println(longest);
        System.out.println("length " + getFontMetrics(f).stringWidth(longest));
        System.out.println("allowed width " + allowedW);
        System.out.println(fontSize);
        fontSize++;
    }
    return f;
}

当我拖动以调整 jframe 大小时,输出看起来像这样:

Demaryius 托马斯
长度 150
允许宽度 158
17
Demaryius 托马斯
长度 170
允许宽度 158
18

像这样改变你的 while 循环,

while ((getFontMetrics(f).stringWidth(longest) < allowedW)){
            //&& ((getFontMetrics(f).getHeight() * numData) < allowedH)) {
        System.out.println(longest);
        System.out.println("length " + getFontMetrics(f).stringWidth(longest));
        System.out.println("allowed width " + allowedW);
        System.out.println(fontSize);
        fontSize++;
        f = new Font("SansSerif", Font.BOLD, fontSize);//your f is not updated after increasing fontSize, if you put it as first statement.
    }
return new Font("SansSerif", Font.BOLD, fontSize - 1);