import java.awt.*;
import java.awt.event.*;import javax.swing.*;public class testApplet extends JApplet
{
public void init ()
{
final JTextField txtView = new JTextField ();
JButton btnOK = new JButton ("确定");

getContentPane ().setLayout (new BorderLayout ());
getContentPane ().add (txtView, BorderLayout.CENTER);
getContentPane ().add (btnOK, BorderLayout.SOUTH);

btnOK.addActionListener(new ActionListener ()
{
public void actionPerformed (ActionEvent arg0)
{
txtView.setText ("ddddd");
}
});
}
}