Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个 Java 代码来查找格式化十进制的长度。例如 - 345.4 它应该返回 5 由于该值已格式化,因此它从值 345.40 中省略了 0 它应该使用BigDecimal
BigDecimal
拥有 youBigDecimal后,您可以使用方法将其转换为纯字符串toPlainString()。因此,该类的length()方法为String您提供 BigDecimal 的长度。
toPlainString()
length()
String