为什么 DecimalFormat 允许字符作为后缀?

Why does DecimalFormat allow characters as suffix?(为什么 DecimalFormat 允许字符作为后缀?)
本文介绍了为什么 DecimalFormat 允许字符作为后缀?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在使用 DecimalFormat 来解析/验证用户输入.不幸的是,它允许在解析时将字符作为后缀.

I'm using DecimalFormat to parse / validate user input. Unfortunately it allows characters as a suffix while parsing.

示例代码:

try {
  final NumberFormat numberFormat = new DecimalFormat();
  System.out.println(numberFormat.parse("12abc"));
  System.out.println(numberFormat.parse("abc12"));
} catch (final ParseException e) {
  System.out.println("parse exception");
}

结果:

12
parse exception

我实际上希望它们都出现解析异常.如何告诉 DecimalFormat 不允许像 "12abc" 这样的输入?

I would actually expect a parse exception for both of them. How can I tell DecimalFormat to not allow input like "12abc"?

推荐答案

来自NumberFormat.parse:

从给定字符串的开头解析文本以生成一个数字.该方法可能不会使用给定字符串的整个文本.

Parses text from the beginning of the given string to produce a number. The method may not use the entire text of the given string.

这是一个示例,可以让您了解如何确保考虑整个字符串.

Here is an example that should give you an idea how to make sure the entire string is considered.

import java.text.*;

public class Test {
    public static void main(String[] args) {
        System.out.println(parseCompleteString("12"));
        System.out.println(parseCompleteString("12abc"));
        System.out.println(parseCompleteString("abc12"));
    }

    public static Number parseCompleteString(String input) {
        ParsePosition pp = new ParsePosition(0);
        NumberFormat numberFormat = new DecimalFormat();
        Number result = numberFormat.parse(input, pp);
        return pp.getIndex() == input.length() ? result : null;
    }
}

输出:

12
null
null

这篇关于为什么 DecimalFormat 允许字符作为后缀?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)
How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)
Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)
Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)
How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)
How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)