我有一个使用以下掩码格式化程序的JFormattedTextField:
private MaskFormatter maskForInput;
maskForInput=new MaskFormatter("####"); // I have tried using stars (*) too.
maskForInput.setValidCharacters("0123456789");
javax.swing.JFormattedTextField playerRaiseField=new javax.swing.JFormattedTextField(maskForInput);
这应该允许用户输入最多4位数作为输入。但是,当我尝试Integer.parseInt(playerRaiseField.getText())
从此字段返回的String
时,由于用户输入上留有空格,我总是得到NumberFormatException
。
要明确这一点:
如果用户输入560
,则会留下一个尾随空格,因此我正在阅读的字符串为560( )
,并且在尝试将此String
解析为int
时抛出此异常。任何解决方法?如何修改掩码格式化程序以接受1到4位数而不总是固定4位数?
注意:奇怪的是,使用trim()
返回的String
仍然没有删除额外的空格字符......
答案 0 :(得分:2)
你的期望有很多问题......
首先,您似乎相信格式化字段可以包含任意数量的字符。这不是真的(虽然您可以获取文本,但该字段仍保留在它认为是无效状态的内容中)。格式化字段要求必须填充掩码的所有位置。
其次,您应该使用JFormattedTextField#getValue
方法返回字段的值,而不是getText
第三,返回的文本填充了掩码的占位符(MaskFormatter#getPlaceholder
),它可能是也可能不是空格,因此String#trim
可能不会有帮助。
如果您希望用户只能输入一个数字值(可能包含0-n个字符),那么您真的应该考虑使用DocumentFilter
应用于普通JTextField
public class TestField {
public static void main(String[] args) {
new TestField();
}
public TestField() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception ex) {
}
JFrame frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class NumericDocumentFilter extends DocumentFilter {
private int maxChars;
public NumericDocumentFilter(int maxChars) {
this.maxChars = maxChars;
}
@Override
public void insertString(DocumentFilter.FilterBypass fb, int offset,
String text, AttributeSet attr)
throws BadLocationException {
StringBuilder buffer = new StringBuilder(text);
for (int i = buffer.length() - 1; i >= 0; i--) {
char ch = buffer.charAt(i);
if (!Character.isDigit(ch)) {
buffer.deleteCharAt(i);
}
}
text = buffer.toString();
if (fb.getDocument().getLength() + text.length() > maxChars) {
int remaining = maxChars - fb.getDocument().getLength();
text = text.substring(0, remaining);
}
if (text.length() > 0) {
super.insertString(fb, offset, text, attr);
}
}
@Override
public void replace(DocumentFilter.FilterBypass fb,
int offset, int length, String string, AttributeSet attr) throws BadLocationException {
if (length > 0) {
fb.remove(offset, length);
}
insertString(fb, offset, string, attr);
}
}
public class TestPane extends JPanel {
private JTextField field;
public TestPane() {
setLayout(new GridBagLayout());
field = new JTextField(4);
((AbstractDocument) field.getDocument()).setDocumentFilter(new NumericDocumentFilter(4));
add(field);
field.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
System.out.println(field.getText());
}
});
}
}
}
答案 1 :(得分:0)
由于我不确定你是如何使用trim的,我建议你尝试使用以下代码行来删除空格: 如下所述,代码应该有效:
String playerBet=playerRaiseField.getText();
// if playerBet is not null
String playerBetWithoutSpaces=playerBet.trim();
Integer.parseInt(playerBetWithoutSpaces);
答案 2 :(得分:0)
1
public void setMask(String mask)
throws ParseException
2你说你得到4个空格。这意味着没有设置默认值,并且您没有使用无效字符。查看上面的文档。
3为了使其可扩展(1-4),您必须确定输入的长度,然后通过带有IF的适当掩码运行它。您也可以使用默认值填充剩余的掩码,请参阅文档。
编辑:看到你在下面发布了更多代码。您不在现有字符串上执行getText。您可以使用它来从字段获取输入。你必须以另一种方式做到这一点。
答案 3 :(得分:0)
您的格式“####”仅允许4位数字。对于可变长度,您必须编写自定义类。 here是一个示例类。
我使用你的代码实现了一些东西,只有在填写了所有4个数字时它才适用于我:
import javax.swing.*;
import javax.swing.text.*;
import java.awt.event.*;
import java.awt.*;
public class tes implements ActionListener
{
public static JFormattedTextField playerRaiseField;
public static void main(String[] args) throws Exception{
JFrame j=new JFrame();
j.setSize(400,400);
j.setLayout(new GridLayout(2,1));
MaskFormatter maskForInput;
maskForInput=new MaskFormatter("####"); // I have tried using stars (*) too.
maskForInput.setValidCharacters("0123456789");
playerRaiseField=new javax.swing.JFormattedTextField(maskForInput);
j.getContentPane().add(playerRaiseField);
JButton jb=new JButton("Print out the above value");
j.getContentPane().add(jb);
jb.addActionListener(new tes());
j.setVisible(true);
}
public void actionPerformed(ActionEvent e) throws Exception{
System.out.println("\""+Integer.parseInt(playerRaiseField.getText())+"\"");
}
}