java中如何让swing的TextArea受到按钮后再显示内容
展开全部
可以给按钮注册一个监听器。点击按钮的时候给textarea设置内容
追问
JButton btnNewButton_1 = new JButton("mTSP");
btnNewButton_1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
TextArea.setText("1111");
} });
TextArea出错
Cannot make a static reference to the non-static method setText(String) from the type TextComponent
追答
他是说不可以一个非static引用,在static方法中引用。你可以把textarea设置为全局变量试一下,应该就不会错了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询