Double decimal formatting in Java

后端 未结 14 1408
囚心锁ツ
囚心锁ツ 2020-11-22 05:17

I\'m having some problems formatting the decimals of a double. If I have a double value, e.g. 4.0, how do I format the decimals so that it\'s 4.00 instead?

14条回答
  •  迷失自我
    2020-11-22 05:54

    Use String.format:

    String.format("%.2f", 4.52135);

    As per docs:

    The locale always used is the one returned by Locale.getDefault().

提交回复
热议问题