TextField tfTxt = new TextField();
TextArea tacontent = new TextArea();
tfTxt.addActionListener(new TxtListener());
private class TxtListener implements ActionListener{
public void actionPerformed(ActionEvent event) { tacontent.setText(tfTxt.getText().trim()+"\n");
tfTxt.setText("");
}
}
其实我想你应该是知道怎么做的,只是不知道怎么捕获键盘的回车键是吧?
键盘上每个键都对应一个code 回车键的code为13
你可以判断当这个code为13的时候处理你的操作就行了
不是有getText跟setText方法吗?