从另一个类的JTextArea获取价值

时间:2018-02-14 04:58:11

标签: java

这就是问题所在。我必须使用来自A级TextArea的{​​{1}}的值填充B级tAreaBTextArea)。{/ p>

我在A组这样做:

tAreaA

如何将tAreaA.setText("Value A"); 填入与tAreaB相同的值? 我在ClassB中试过这个:

tAreaA

1 个答案:

答案 0 :(得分:0)

我想你知道如何运作方法,所以,你唯一需要做的就是非常简单......

代码:

//Class A - button's - ActionListener.
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent A){

//Create a empty variable: String, with the name of: value.
String value = "";

//Value, gets the text of the: txtAreaA.
value = txtAreaA.getText();

//Calls the: classB, and create a new object from them.
classB cb = new classB();

//cb.txtAreaB(); is the method who creates a: JFrame, with JTextArea, in classB.
cb.txtAreaB();

//Now, just call the object, and set the text: value.
cb.txtAreaB.setText(value);
}});