gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 06:58:10 25 4
gpt4 key购买 nike

我有一个使用 NumberFormatter 格式化的 JTextField。它工作得很好,直到我尝试添加一个零,然后它将字段增加到旧输入的 10,000 倍。这不是世界上最重要的事情,只是尝试修复用户的输入有点令人困惑。

已修复

如下所述,删除 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);
}
});
}
}

最佳答案

我认为可以通过不将格式化程序的覆盖模式设置为 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);
}
}

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

关于java - 货币格式化程序对用户不友好/不直观。随机增加输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22446824/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com