How about: final Font f = new Font(...); for (char c = 0x0000; c <= Character.MAX_VALUE; c++) { if (f.canDisplay(c)) { // draw it ... } } See Font.
確定! 回上一頁