1.4이하 JDK에서는
File file = new File( Config.FONT_BASEPATH + "humanexpo.ttf" );
FileInputStream fi = new FileInputStream( file );
Font font = Font.createFont( Font.TRUETYPE_FONT, fi );
1.5이상 JDK에서는
File file = new File( Config.FONT_BASEPATH + "humanexpo.ttf" );
Font font = Font.createFont( Font.TRUETYPE_FONT, file );
참 지랄같은 자바;
댓글 없음:
댓글 쓰기