在 Java 中,访问预定义的字体、大小和颜色对于创建具有视觉吸引力的应用程序。这些元素增强了用户体验并实现一致的格式。
要获取系统上可用字体的列表,请使用以下代码:
<code class="java">GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); String[] fonts = ge.getAvailableFontFamilyNames();</code>
此命令检索字体系列名称的数组,这些名称可以显示在 JComboBox 中或用于进一步处理。
字体大小和样式可以在运行时动态设置。以下示例演示了字体大小选择:
<code class="java">JComboBox sizeChooser = new JComboBox(new String[] { "8", "10", "12" });</code>
同样,您可以为字体样式创建 JComboBox,例如粗体、斜体和普通。
以下代码演示了一个完整的字体选择器,在单独的 JComboBox 中显示字体系列、大小和颜色:
<code class="java">import java.awt.*; import javax.swing.*; public class FontChooser { public static void main(String[] args) { SwingUtilities.invokeLater(() -> { // Get available fonts GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); String[] fonts = ge.getAvailableFontFamilyNames(); // Create comboboxes for fonts, sizes, and colors JComboBox fontChooser = new JComboBox(fonts); fontChooser.setRenderer(new FontCellRenderer()); JComboBox sizeChooser = new JComboBox(new String[] { "8", "10", "12" }); JComboBox colorChooser = new JComboBox(new String[] { "Black", "Blue", "Red" }); // Create a panel to hold the choosers JPanel chooserPanel = new JPanel(); chooserPanel.add(fontChooser); chooserPanel.add(sizeChooser); chooserPanel.add(colorChooser); // Show the chooser dialog JOptionPane.showMessageDialog(null, chooserPanel); }); } } // Renderer for the font combobox class FontCellRenderer extends DefaultListCellRenderer { @Override public Component getListCellRendererComponent( JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) { JLabel label = (JLabel)super.getListCellRendererComponent( list,value,index,isSelected,cellHasFocus); Font font = new Font(value.toString(), Font.PLAIN, 20); label.setFont(font); return label; } }</code>
通过使用提供的代码,您可以合并字体选择和格式化功能到您的 Java 应用程序中,增强其功能和视觉吸引力。
以上是如何在 Java 应用程序中自定义字体、大小和颜色?的详细内容。更多信息请关注PHP中文网其他相关文章!