当数字为零(0)时,是否可以显示空白(空字符串)? (左边严格没有零)
答案 0 :(得分:5)
您可以使用MessageFormat
,特别是其ChoiceFormat
功能:
double[] nums = {
-876.123, -0.1, 0, +.5, 100, 123.45678,
};
for (double num : nums) {
System.out.println(
num + " " +
MessageFormat.format(
"{0,choice,-1#negative|0#zero|0<{0,number,'#,#0.000'}}", num
)
);
}
打印:
-876.123 negative
-0.1 negative
0.0 zero
0.5 0.500
100.0 1,00.000
123.45678 1,23.457
请注意,MessageFormat
确实使用了DecimalFormat
。来自the documentation:
FORMAT TYPE: number
FORMAT STYLE: subformatPattern
SUBFORMAT CREATED: new DecimalFormat(
subformatPattern,
DecimalFormatSymbols.getInstance(getLocale())
)
所以这个 使用DecimalFormat
,虽然是间接的。如果出于某种原因禁止这样做,那么你必须自己检查一个特殊情况,因为DecimalFormat
不区分零。来自the documentation:
DecimalFormat
模式具有以下语法:Pattern: PositivePattern PositivePattern ; NegativePattern
没有选项可以为零提供特殊模式,因此没有DecimalFormat
模式可以为您执行此操作。例如,您可以选择if
- 检查,或者让MessageFormat/ChoiceFormat
为您执行此操作,如上所示。
答案 1 :(得分:0)
您可以使用String.format方法:
int num1=0;
int num2=33;
string str1 = (num1!=0) ? String.format("%3d", num1) : " ";
string str2 = (num2!=0) ? String.format("%3d", num2) : " ";
System.out.println("("+str1+")"); // output: ( )
System.out.println("("+str2+")"); // output: ( 33)
格式的语法非常类似于c printf(用于此基本用途)