当我尝试使用Wingdings字体(或其他符号字体)时,文本将显示为矩形而不是正确的文本。如何显示正确的字符?
import java.awt.*;
import javax.swing.*;
public class WingdingsFontDisplay extends JFrame
{
public static void main(String[] args)
{
new WingdingsFontDisplay();
}
public WingdingsFontDisplay()
{
this.setSize(500,150);
this.setTitle("Fun with Fonts");
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//This shows that I do have "Wingdings" available
GraphicsEnvironment g;
g = GraphicsEnvironment.getLocalGraphicsEnvironment();
String[] fonts = g.getAvailableFontFamilyNames();
for(String f : fonts)
{
System.out.println(f);
}
//Displaying text in the Wingdings font shows rectangles
JLabel wingdingsText = new JLabel("All work and no play makes Jack a dull boy");
Font f1 = new Font("Wingdings", Font.PLAIN, 14);
wingdingsText.setFont(f1);
this.add(wingdingsText, BorderLayout.NORTH);
//Displaying text in Arial works correctly
JLabel arialText = new JLabel("All work and no play makes Jack a dull boy");
Font f2 = new Font("Arial", Font.PLAIN, 14);
arialText.setFont(f2);
this.add(arialText, BorderLayout.SOUTH);
this.setVisible(true);
}
}
答案 0 :(得分:4)
您需要为所寻找的符号使用适当的Unicode范围。在Java中,符号不会覆盖在ASCII范围内,而是具有各自不同的字符代码。
您可以在http://unicode.org/~asmus/web-wing-ding-ext.pdf找到对相应符号代码的引用。最常见的符号位于0x2200和0x2700 Unicode范围内。
您的Java安装可能包含 SymbolTest 示例小程序,这样可以直接使用可用字体预览Unicode范围的演示文稿。但是,请注意,更好的Java实现将对不在指定字体中的符号或字符使用字体替换,因此您需要确保实际获得指定的字体。