gpt4 book ai didi

java - 我为 JFormattedTextField 制作的 NumberFormatter 函数不允许输入十进制数字

转载 作者:行者123 更新时间:2023-11-30 06:48:37 24 4
gpt4 key购买 nike

为了将用户的输入限制在特定的数字范围内,我创建了这个函数:

public static final Locale GR=new Locale("el", "GR");

public static NumberFormatter getMyNumberFormatter(){
NumberFormatter formatter = new NumberFormatter(NumberFormat.getInstance(GR));
formatter.setValueClass(Double.class);
formatter.setAllowsInvalid(false);
formatter.setCommitsOnValidEdit(true);
formatter.setMinimum(0.0);
formatter.setMaximum(10000000.0);
DecimalFormat df = (DecimalFormat)DecimalFormat.getInstance(GR);
df.setGroupingUsed(true);
formatter.setFormat(df);
return formatter;
}

我将此格式化程序应用于 JFormatedTextfield 但它 对整数值起作用。我希望用户能够键入从 0.0 到 10000000.0 的 float 值,但当前的格式化程序只允许整数。自动分组工作完美。有什么建议吗?

最佳答案

我记得 JFormattedTextField 使用起来很痛苦。

我假设 DecimalFormat 不允许只有小数点的数字,基于 javadoc 的以下部分:

If you are going to allow the user to enter decimal values, you should either force the DecimalFormat to contain at least one decimal (#.0###), or allow the value to be invalid setAllowsInvalid(true). Otherwise users may not be able to input decimal values.

你也可以尝试添加

df.setDecimalSeparatorAlwaysShown(true);

请注意:JFTF 是使用一种 NumberFormat 创建的,后来又设置了一个新格式,这有点令人困惑。更直接(未测试):

DecimalFormat df = (DecimalFormat)DecimalFormat.getInstance(GR);
df.setGroupingUsed(true);
df.setDecimalSeparatorAlwaysShown(true);
NumberFormatter formatter = new NumberFormatter(df);
...

或者只是

NumberFormatter formatter = new NumberFormatter();
...
formatter.setFormat(df);

建议(IMO 比使用 JFTF 更好):

扩展 DocumentFilter 并将其设置为新 PlainDocument 的过滤器。使用使用该文档的 JTextField。

关于java - 我为 JFormattedTextField 制作的 NumberFormatter 函数不允许输入十进制数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44010646/

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