把文本框的值转移到文本域案例

把文本框的值转移到文本域案例

import java.awt.Button;

import java.awt.FlowLayout;

import java.awt.Frame;

import java.awt.TextArea;

import java.awt.TextField;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.WindowAdapter;

import java.awt.event.WindowEvent;

 

public classFrameDemo {

   public static void main(String[] args) {

      // 创建窗体对象

      Framef = newFrame("数据转移");

      // 设置窗体属性和布局

      f.setBounds(400,200, 400, 300);

      f.setLayout(new FlowLayout());

 

      // 创建文本框

      final TextField tf = new TextField(20);

      // 创建按钮

      Buttonbu = newButton("数据转移");

      // 创建文本域

      final TextArea ta = new TextArea(10, 40);

 

      // 把组件添加到窗体

      f.add(tf);

      f.add(bu);

      f.add(ta);

 

      // 设置窗体关闭

      f.addWindowListener(new WindowAdapter() {

         @Override

         public voidwindowClosing(WindowEvent e) {

            System.exit(0);

         }

      });

 

      // 对按钮添加事件

      bu.addActionListener(new ActionListener() {

         @Override

         public voidactionPerformed(ActionEvent e) {

            // 获取文本框的值

            Stringtf_str = tf.getText().trim();

            // 清空数据

            tf.setText("");

 

            // 设置给文本域

            // ta.setText(tf_str);

            // 追加和换行

            ta.append(tf_str+ "\r\n");

           

            //获取光标

            tf.requestFocus();

         }

      });

 

      // 设置窗体显示

      f.setVisible(true);

   }

}

你可能感兴趣的:(文本框,文本域)