我有Java Swing文本输入的问题.我在类A中有一个方法inputData(),当我调用它时,该方法应该等待用户在类B中填充TextField输入并按Enter.最后,inputData()方法应该包含用户编写的文本.我该怎么解决?
class A {
B b = new B();
public A() {
inputData();
}
public char[] inputData() {
// there I would like to get text
// from TextField from class B
}
}
//-------------------------------
class B extends JFrame{
private JTexField input;
public B() {
}
private void inputKeyPressed(KeyEvent e) {
if (e.getKeyCode() == 10) { // pressed ENTER
input.getText()
input.setText(null);
}
}
}
解决方法:
您可能实际上并不想要JTextField.听起来你正在等待来自用户的一行输入,这应该是一个JOptionPane.这里描述了如何做到这一点:
http://download.oracle.com/javase/tutorial/uiswing/components/dialog.html#input
基本上,JOptionPane.showInputDialog()将弹出一个窗口,其中包含一个文本字段和OK / Cancel按钮,如果按Enter键,它将接受您的输入.这消除了对另一个类的需要.
你把它放在你的inputData()方法中:
inputData()
{
String input = JOptionPane.showInputDialog(...);
//input is whatever the user inputted
}
如果这不是您正在寻找的并且您希望文本字段保持打开,那么您真正想要的是JTextField旁边的“提交”按钮,该按钮允许用户决定何时提交文本.在这种情况下,您可以:
class B extends JFrame
{
private A myA;
private JTextField input;
private JButton submitButton;
public B()
{
submitButton.addActionListener(new SubmitListener());
}
private class SubmitListener
{
//this method is called every time the submitButton is clicked
public void actionPerformed(ActionEvent ae)
{
myA.sendInput(inputField.getText());
//A will need a method sendInput(String)
}
}
}