我将如何在 Java [已解决] 中的块外使用 try{} 块内定义的字体

how would I use a Font defined inside of a try{} block outside of the block in Java [resolved]

所以,我正在研究时钟,它需要一种字体(来自外部文件)以使其看起来像 14 段显示,而不是它当前使用的 Sans-Serif 字体。但是,该字体不适用于我在 try 块之外使用的 JLabel 元素。我如何使 Font 变量成为全局变量?

try {
    Font dseg14 = Font.createFont(
        Font.TRUETYPE_FONT, new File("DSEG14ClassicMini-Regular.ttf")).deriveFont(12f);
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    ge.registerFont(dseg14);
} catch (IOException e) {
    e.printStackTrace();
} catch(FontFormatException e) {
    e.printStackTrace();
}

Main jFrame = new Main();
JLabel timeLabel = new JLabel();
DateTimeFormatter dateTimeFormatter = 
DateTimeFormatter.ofPattern("MM-dd-yyyy HH:mm.ss");
timeLable.setFont(dseg14);

(不好意思,代码比较乱)

已解决 :D

有多种方法可以处理这种情况,一种是将 Font 的引用分配给实例字段,一种可能是使用“默认”Font在尝试加载自定义字体之前进行设置,如果加载成功,则将自定义字体分配给此变量,例如...

Font font = // fallback font
try {
    dseg14 = Font.createFont(Font.TRUETYPE_FONT, new File("DSEG14ClassicMini-Regular.ttf")).deriveFont(12f);
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    ge.registerFont(dseg14);
    font = dseg14;
} catch (IOException e) {
    e.printStackTrace();
} catch (FontFormatException e) {
    e.printStackTrace();
}
//...

另一种方法可能是使用 Font(String, int, int) 直接从 GraphicsEnvironment 加载字体,例如...

import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.FontFormatException;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GraphicsEnvironment;
import java.io.IOException;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class Main {

    public static void main(String[] args) {
        new Main();
    }

    public Main() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                JFrame frame = new JFrame();
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel {

        public TestPane() {
            try {
                Font font = Font.createFont(Font.TRUETYPE_FONT, getClass().getResourceAsStream("/resources/DSEG14ClassicMini-Regular.ttf"));
                System.out.println(font.getName());
                System.out.println(font.getFamily());
                System.out.println(font.getFontName());
                GraphicsEnvironment.getLocalGraphicsEnvironment().registerFont(font);
            } catch (FontFormatException ex) {
                ex.printStackTrace();
            } catch (IOException ex) {
                ex.printStackTrace();
            }

            // You could do this in the try-catch block above, but the
            // point is to demonstrate how it "might" be used after
            // the initialisation phase has completed
            Font font = new Font("DSEG14 Classic Mini", Font.PLAIN, 12);
            if (font != null) {
                setFont(font);
            }
        }

        @Override
        public Dimension getPreferredSize() {
            return new Dimension(200, 200);
        }

        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g.create();
            String text = "Hello World";
            FontMetrics fm = g2d.getFontMetrics();
            int x = (getWidth() - fm.stringWidth(text)) / 2;
            int y = ((getHeight() - fm.getHeight()) / 2) + fm.getAscent();
            g2d.drawString(text, x, y);
            g2d.dispose();
        }

    }
}

但是,如果无法加载字体,您需要有一个后备工作流程来确定该怎么做。例如,我可能有一个初始化阶段,它必须在应用程序的其余部分 运行 之前成功完成。这将使您在处理它并向用户显示一条好消息时有一些“优雅”。