当前位置: 技术问答>java相关
如何获取JButton上的文本?
来源: 互联网 发布时间:2015-06-15
本文导语: 一个JButton上的text经常改变,如原来是OK,过一会就变成release,请问如何获取它的文本呢? | You can use getText(); | getText public String getText()Returns the button's text. Returns: the...
一个JButton上的text经常改变,如原来是OK,过一会就变成release,请问如何获取它的文本呢?
|
You can use getText();
|
getText
public String getText()Returns the button's text.
Returns:
the buttons text
See Also:
setText(java.lang.String)
public String getText()Returns the button's text.
Returns:
the buttons text
See Also:
setText(java.lang.String)
|
同意楼上.
|
就使用getText()那么简单!
|
getText
public String getText()
Returns the button's text.
Returns:
the buttons text
See Also:
setText(java.lang.String)
public String getText()
Returns the button's text.
Returns:
the buttons text
See Also:
setText(java.lang.String)
|
取出用getText()
设置用setText(String str)
设置用setText(String str)