/**
* @param args
*/
public static void main(String[] args) {
JFrame jf = new JFrame("我的窗口");
jf.setSize(500, 400);
jf.setLocation(450, 200);
jf.setLayout(new FlowLayout());
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
final JTextField jtf = new JTextField(30);
JButton jb = new JButton("转到");
final TextArea ta = new TextArea();
jb.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {