Font theFont = new Font("Bitstream Cyberbit", Font.PLAIN, 20); JTextArea area = new JTextArea(characters, 2, 30); area.setFont(theFont); area.setLineWrap(true); JScrollPane scrollpane = new JScrollPane(area); add(scrollpane);
HelloInJapanese japanesePanel = new HelloInJapanese(helloInJapanese); frame = new JFrame("Hello in Japanese"); frame.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) {System.exit(0);} }); frame.getContentPane().add("Center", japanesePanel); frame.pack(); frame.setVisible(true);