这里有两个我希望在JTextField中显示“Port”的类,谢谢
第1类
System.out.println("using port "+portId.getName());
第2类
textField = new JTextField();
frame.getContentPane().add(textField, "5, 3, left, default");
textField.setColumns(10);
答案 0 :(得分:1)
将以下方法添加到第2课,并从第1课中调用它。
public void updatePort(final String port) {
// SwingUtilities.invokeLater is only needed if the method is called from outside the EDT
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
textField.setText(port);
}
});
}
答案 1 :(得分:0)
我想在JTextField中显示“Port”
您是希望端口显示在JTextField
还是希望获得JTextField
中显示的端口,这一点很困惑。我在这里提供了实现这两项任务的方法。
在class 2
中添加方法,如下所示:
pubic String getPort()//to get port shown in JTextField
{
return textField.getText();
}
public void setPort(String port)//to show the port in JTextField
{
textField.setText(port);
}
在class 1
范围内,您可以写如下:
Class2 obj = new Class2();
String port = obj.getPort();//to get Port from JTextField
obj.setPort(port);//to set port in JTextField