我最近在MaskFormatter
课程中添加了JFormattedTextField
。以前ActionListener
正在响应代码,使用.getText()
方法获取文本工作正常。使用新的MaskFormatter
获取文本返回“”并输入按钮不起作用(ActionListener
停止响应该框)。
这是整个JFormattedTextField类:
package swing;
import game.Main;
import java.awt.Font;
import javax.swing.JFormattedTextField;
import javax.swing.text.MaskFormatter;
import window.Listener;
@SuppressWarnings("serial")
public class TextField extends JFormattedTextField
{
public TextField(int size, String text)
//TODO limit to number input and 3 character input only
{
super(createFormatter());
Font font = new Font("AGENCY FB", Font.BOLD, 30);
this.setFont(font);
this.setColumns(size);
this.setSize(100, 100);
this.setText(text);
}
private static MaskFormatter createFormatter()
{
MaskFormatter formatter = null;
try
{
formatter = new MaskFormatter("###");
}
catch (java.text.ParseException exc)
{
System.err.println("formatter is bad: " + exc.getMessage());
System.exit(-1);
}
return formatter;
}
}
答案 0 :(得分:1)
键入3位数字并按 Enter ,它对我有效。
public class FieldAction extends JFrame {
FieldAction() {
MaskFormatter mask = null;
try {
mask = new MaskFormatter("###");
} catch (ParseException e) {
e.printStackTrace();
}
final JFormattedTextField textField = new JFormattedTextField(mask);
textField.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.out.println(textField.getText());
}
});
add(textField, BorderLayout.CENTER);
setLocationRelativeTo(null);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
pack();
setVisible(true);
}
public static void main(String[] args) {
new FieldAction();
}
}
答案 1 :(得分:0)
我想下面的代码可以为你效劳。这样,无论何时按Enter键,您都可以看到输入的文本。
addKeyListener(new KeyAdapter() {
public void keyReleased(KeyEvent evt) {
if (evt.getKeyCode() == KeyEvent.VK_ENTER) {
System.out.println(this.getText().trim());
}
}
});