在Applet中加入一个JScrollPane ,把 JTextArea 加到 JScrollPane 里,由 JScrollPane 提供滚动条:
JScrollPane jsp1 = new JScrollPane();
JTextArea area = new JTextArea();jsp1.getViewport().add(area, null);