In this example we are going to format a decimal value.
In this example we are talking a double value. We are creating an object of DecimalFormat(String format_type) class .In DecimalFormat class we are passing "0.000" .This is used to create an decimal format which display three digits after decimal point. We are using NumberFormat to store the reference of object of DecimalFormat with name of formatter. To apply the format on double value we are using format() method.
The code of the program is given below:
|
|
The output of the program is given below:
C:\convert\rajesh\completed>javac DecimalFormatExample.java C:\convert\rajesh\completed>java DecimalFormatExample The Decimal Value is:2192.015 |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Decimal Format Example View All Comments
Post your Comment