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.
我正在尝试使用 JavaDecimalFormat()函数格式化百分比。我使用的格式字符串是
DecimalFormat()
'#.##%;-#%'.
'#.##%;-#%'
这并没有给我预期的负面结果,例如 -12% 显示为简单的 -12。我哪里错了?
您不能在模式中使用百分号,因为它具有特殊含义:
Multiply by 100 and show as percentage
请参阅:javadoc,特殊模式字符