当前位置: 代码迷 >> J2SE >> 小弟我如果想给一个按钮加一个点击时间,要如何写代码呢
  详细解决方案

小弟我如果想给一个按钮加一个点击时间,要如何写代码呢

热度:322   发布时间:2016-04-24 17:25:13.0
我如果想给一个按钮加一个点击时间,要怎么写代码呢?
rt

------解决方案--------------------
Button bu = new Button( "按我 ");
bu.addActionListener(
new ActionListener(){
public void actionPerformed(ActionEvent e){
System.out.println(((Button)e.getSource()).getLabel());
}



});
------解决方案--------------------
在文本框后面追加文字,不删除原来的文字

StringBuffer textInfo=new StringBuffer(text.getText());
textInfo.append( "想追加的文字 ");
text.setText(textInfo.toString());
  相关解决方案