I have a JFormattedTextField
that masks a phone number in the format:
(###) ###-####
I need to retrieve the unformatted, raw ##########
to store in a database.
Currently, I am using .getText().replaceAll("\\)", "").replaceAll("\\(", "").replaceAll("-", "").replaceAll(" ", "")
, but this just seems like it should be easier.
Is there a way to get the unmasked, unformatted, raw input from a JFormattedTextField
?
Here's the MVCE to illustrate:
public static void main(String args[]) {
final JFormattedTextField phone = new JFormattedTextField();
try {
phone.setFormatterFactory(new javax.swing.text.DefaultFormatterFactory(new javax.swing.text.MaskFormatter("(###) ###-####")));
} catch(ParseException e) {
e.printStackTrace();
}
phone.setPreferredSize(new Dimension(125, phone.getPreferredSize().height));
final JButton button = new JButton("Get Text");
button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
System.out.println(phone.getText().replaceAll("\\)", "").replaceAll("\\(", "").replaceAll("-", "").replaceAll(" ", ""));
}
});
JFrame frame = new JFrame();
JPanel panel = new JPanel();
panel.add(phone);
panel.add(button);
frame.add(panel);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
Why do not use
MaskFormatter
:Type
(123) 456-7890
and press Enter. The output will beGenerally since the mask is not completed , the
fTextField.getValue()
returnsnull
full code