You could check to see if the font is installed:
Code:
import java.awt.*;
public class Test {
public static void main(String[] args) {
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
Font[] fonts = ge.getAllFonts();
for (int i=0; i<fonts.length; i++) {
String faceName = fonts[i].getName();
System.out.println(faceName);
}
}
}
...and if it's not, copy the font file to a specified fonts directory, re-run the above test to check that the font is registered and then continue.