首页javanumber_formatJava Data Type - 如何设置指数的倍数

Java Data Type - 如何设置指数的倍数

我们想知道如何设置指数的倍数。

The number of #'s to the left of the decimal point sets the multiple of the exponent.

import java.text.DecimalFormat; public class Main { public static void main(String[] argv) throws Exception { DecimalFormat formatter = new DecimalFormat("#E0"); // exponent can be any // value String s = formatter.format(-1234.567); System.out.println(s); s = formatter.format(-.1234567); System.out.println(s); } }