货币格式化程序不是用户友好/直观。随机增加输入字段

时间:2014-03-17 04:12:11

标签: java number-formatting jformattedtextfield

我有JTextField格式为NumberFormatter。它完全正常,直到我尝试添加零,然后它将字段增加到类似10,000 x旧输入。它不是世界上最大的交易,只是有点混乱,试图修改作为用户的输入。

固定

如下所述,删除setMaximumuFraction() / setMinimumFraction()以及setOverwriteMode()使其按照我的意愿行事。

private void setValues(){
    name = new JFormattedTextField();
    format = NumberFormat.getCurrencyInstance(Locale.US);
    format.setMinimumFractionDigits(2);
    format.setMaximumFractionDigits(2);
    formatter = new NumberFormatter(format);
    formatter.setMinimum(0.0);
    formatter.setMaximum(10000000.0);
    formatter.setAllowsInvalid(false);

    formatter.setOverwriteMode(true);
    price = new JFormattedTextField(formatter);
    price.setValue(0.0);
}

那是我当前的代码,我用

声明变量
private JFormattedTextField name, price;
private NumberFormat format;
private NumberFormatter formatter;

也许是因为我将setMinimumFractionDigits()设置为2或者不是。

有什么想法吗?

修改

这是工作代码的示例。只需要自己编译:

import java.awt.EventQueue;
import java.text.NumberFormat;
import java.util.Locale;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JFormattedTextField;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.text.NumberFormatter;



public class testClass extends JPanel{
    private JFormattedTextField name, price;
    private int option;
    private NumberFormat format;
    private NumberFormatter formatter;
    public testClass(){
        initComponents();
        startPanel();
    }

    private void initComponents(){
        name = new JFormattedTextField();
        format = NumberFormat.getCurrencyInstance(Locale.US);
        format.setMinimumFractionDigits(2);
        format.setMaximumFractionDigits(2);
        formatter = new NumberFormatter(format);
        formatter.setMinimum(0.0);
        formatter.setMaximum(10000000.0);
        formatter.setAllowsInvalid(false);

        formatter.setOverwriteMode(true);
        price = new JFormattedTextField(formatter);
        price.setValue(0.0);
    }

    private void startPanel(){
        Object[] message = {
          "Item Name", name,
          "Item Price", price,    
        };
        option = JOptionPane.showConfirmDialog(this, message, "New Customer Information", JOptionPane.OK_CANCEL_OPTION);

    }


     public static void main (String[] args){
        try {
            for (UIManager.LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            Logger.getLogger(testClass.class.getName()).log(Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            Logger.getLogger(testClass.class.getName()).log(Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            Logger.getLogger(testClass.class.getName()).log(Level.SEVERE, null, ex);
        } catch (UnsupportedLookAndFeelException ex) {
            Logger.getLogger(testClass.class.getName()).log(Level.SEVERE, null, ex);
        }
        EventQueue.invokeLater(new Runnable() {
            public void run() {

                new testClass().setVisible(true);
            }
        });
    }
}

1 个答案:

答案 0 :(得分:1)

我认为可以通过不将格式化程序的覆盖模式设置为true来解决这个问题。这些人也不是必需的:

format.setMinimumFractionDigits(2);
format.setMaximumFractionDigits(2);

由于Locale.US货币格式应该已经处理好了。


编辑:这是我用来测试代码的最小示例程序:

import java.text.NumberFormat;
import java.util.Locale;

import javax.swing.*;
import javax.swing.text.NumberFormatter;

public class TestList {
   static JFormattedTextField price;
   static NumberFormat format;
   static NumberFormatter formatter;

   public static void main(String[] args) {
      setValues();
      JPanel panel = new JPanel();
      panel.add(new JLabel("price:"));
      panel.add(price);

      JOptionPane.showMessageDialog(null, panel);
   }

   private static void setValues(){
      format = NumberFormat.getCurrencyInstance(Locale.US);
//      format.setMinimumFractionDigits(2);
//      format.setMaximumFractionDigits(2);
      formatter = new NumberFormatter(format);
      formatter.setMinimum(0.0);
      formatter.setMaximum(10000000.0);
      formatter.setAllowsInvalid(false);

      // formatter.setOverwriteMode(true);
      price = new JFormattedTextField(formatter);
      price.setColumns(10);
      price.setValue(0.0);
  }
}

请注意,我删除了名称字段,因为它与您的问题完全无关,并将所有内容设置为静态,因此可以在简单的静态主方法中运行。