new JFormattedTextField(Format format) : JFormattedTextField « javax.swing « Java by API






new JFormattedTextField(Format format)

  
import java.awt.FlowLayout;
import java.awt.Font;
import java.text.Format;
import java.text.NumberFormat;
import java.util.Locale;

import javax.swing.BoxLayout;
import javax.swing.JFormattedTextField;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class MainClass {
  public static void main(String args[]) throws Exception {

    JFrame frame = new JFrame("Number Input");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Font font = new Font("SansSerif", Font.BOLD, 16);

    JLabel label;
    JFormattedTextField input;
    JPanel panel;

    BoxLayout layout = new BoxLayout(frame.getContentPane(), BoxLayout.Y_AXIS);
    frame.setLayout(layout);

    Format currency = NumberFormat.getCurrencyInstance(Locale.UK);
    label = new JLabel("UK Currency:");
    input = new JFormattedTextField(currency);
    input.setValue(2424.50);
    input.setColumns(20);
    input.setFont(font);
    panel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
    panel.add(label);
    panel.add(input);
    frame.add(panel);

    frame.pack();
    frame.setVisible(true);
  }
}
           
         
    
  








Related examples in the same category

1.new JFormattedTextField(Formatter formatter)
2.new JFormattedTextField(AbstractFormatterFactory factory, Object currentValue)
3.new JFormattedTextField(Object value)
4.new JFormattedTextField(new MaskFormatter('(###)###-####'))
5.new JFormattedTextField(new DecimalFormat('###,###'))
6.new JFormattedTextField(new SimpleDateFormat('MM/dd/yy'))
7.JFormattedTextField: addActionListener(ActionListener l)
8.JFormattedTextField: commitEdit()
9.JFormattedTextField: getFormatterFactory()
10.JFormattedTextField: getValue()
11.JFormattedTextField: isEditValid()
12.JFormattedTextField: setColumns(int columns)
13.JFormattedTextField: setFont(Font f)
14.JFormattedTextField: setFormatterFactory(AbstractFormatterFactory tf)
15.JFormattedTextField: setInputVerifier(InputVerifier inputVerifier)
16.JFormattedTextField: setValue(Object value)
17.JFormattedTextField deals with URL