현재 작동 중인 자바에서 지원하는 폰트를 확인 해 보고 싶을 때
아래와 같은 코드로 확인 해 볼 수 있다.
package com.test;
import java.awt.Font;
import java.awt.GraphicsEnvironment;
public class FontList {
/**
* 작성자 : 정윤재
* 사용법 : java 시스템에서 지원하는 fonts list 보여주기
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
GraphicsEnvironment e = GraphicsEnvironment.getLocalGraphicsEnvironment();
Font[] fonts = e.getAllFonts(); // Get the fonts
for (Font f : fonts) {
System.out.println(f.getFontName());
}
}
}
'JAVA' 카테고리의 다른 글
[ JAVA ] Windows JAVA 설치 (0) | 2015.01.14 |
---|---|
[ JAVA ] java.util.zip.ZipException: invalid entry size (expected xxxxx but got 0 bytes) (0) | 2014.10.22 |
[ JAVA ] Linux 에서 java 로 local ip 알아 내기 (0) | 2013.06.01 |
[ JAVA ] 배열 (array) 을 List 형태로 변경 하기 (0) | 2013.06.01 |
[ JAVA ] Property 파일 변경 된 사항 실시간 적용 되도록 하는 법 (2) | 2013.05.19 |
댓글