
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Add Grouping Specifiers for Large Numbers in Java
For using the Formatter class, import the following package −
import java.util.Formatter;
We can group specifiers as shown below −
Formatter f = new Formatter(); f.format("%,.2f", 38178.9889);
The above sets thousands separator and 2 decimal places.
The following is an example −
Example
import java.util.Formatter; public class Demo { public static void main(String args[]) { Formatter f = new Formatter(); f.format("%d", 50); System.out.println(f); f = new Formatter(); f.format("%,.2f", 38178.9889); System.out.println(f); } }
Output
50 38,178.99
Advertisements