Java Tutorial
- Java - Home
- Java - Overview
- Java - History
- Java - Features
- Java vs C++
- Java Virtual Machine(JVM)
- Java - JDK vs JRE vs JVM
- Java - Hello World Program
- Java - Environment Setup
- Java - Basic Syntax
- Java - Variable Types
- Java - Data Types
- Java - Type Casting
- Java - Unicode System
- Java - Basic Operators
- Java - Comments
- Java - User Input
Java Control Statements
- Java - Loop Control
- Java - Decision Making
- Java - If-else
- Java - Switch
- Java - For Loops
- Java - For-Each Loops
- Java - While Loops
- Java - do-while Loops
- Java - Break
- Java - Continue
Object Oriented Programming
- Java - OOPs Concepts
- Java - Object & Classes
- Java - Class Attributes
- Java - Class Methods
- Java - Methods
- Java - Variables Scope
- Java - Constructors
- Java - Access Modifiers
- Java - Inheritance
- Java - Aggregation
- Java - Polymorphism
- Java - Overriding
- Java - Method Overloading
- Java - Dynamic Binding
- Java - Static Binding
- Java - Instance Initializer Block
- Java - Abstraction
- Java - Encapsulation
- Java - Interfaces
- Java - Packages
- Java - Inner Classes
- Java - Static Class
- Java - Anonymous Class
- Java - Singleton Class
- Java - Wrapper Classes
- Java - Enums
- Java - Enum Constructor
- Java - Enum Strings
Java Built-in Classes
- Java - Number
- Java - Boolean
- Java - Characters
- Java - Strings
- Java - Arrays
- Java - Date & Time
- Java - Math Class
Java File Handling
- Java - Files
- Java - Create a File
- Java - Write to File
- Java - Read Files
- Java - Delete Files
- Java - Directories
- Java - I/O Streams
Java Error & Exceptions
- Java - Exceptions
- Java - try-catch Block
- Java - try-with-resources
- Java - Multi-catch Block
- Java - Nested try Block
- Java - Finally Block
- Java - throw Exception
- Java - Exception Propagation
- Java - Built-in Exceptions
- Java - Custom Exception
Java Multithreading
- Java - Multithreading
- Java - Thread Life Cycle
- Java - Creating a Thread
- Java - Starting a Thread
- Java - Joining Threads
- Java - Naming Thread
- Java - Thread Scheduler
- Java - Thread Pools
- Java - Main Thread
- Java - Thread Priority
- Java - Daemon Threads
- Java - Thread Group
- Java - Shutdown Hook
Java Synchronization
- Java - Synchronization
- Java - Block Synchronization
- Java - Static Synchronization
- Java - Inter-thread Communication
- Java - Thread Deadlock
- Java - Interrupting a Thread
- Java - Thread Control
- Java - Reentrant Monitor
Java Networking
- Java - Networking
- Java - Socket Programming
- Java - URL Processing
- Java - URL Class
- Java - URLConnection Class
- Java - HttpURLConnection Class
- Java - Socket Class
- Java - Generics
Java Collections
Java List Interface
Java Queue Interface
Java Map Interface
- Java - Map Interface
- Java - HashMap
- Java - LinkedHashMap
- Java - WeakHashMap
- Java - EnumMap
- Java - SortedMap Interface
- Java - TreeMap
- Java - The IdentityHashMap Class
Java Set Interface
- Java - Set Interface
- Java - HashSet
- Java - EnumSet
- Java - LinkedHashSet
- Java - SortedSet Interface
- Java - TreeSet
Java Data Structures
- Java - Data Structures
- Java - Enumeration
- Java - BitSet Class
- Java - Dictionary
- Java - Hashtable
- Java - Properties
Java Collections Algorithms
Advanced Java
- Java - Command-Line Arguments
- Java - Lambda Expressions
- Java - Sending Email
- Java - Applet Basics
- Java - Javadoc Comments
- Java - Autoboxing and Unboxing
- Java - File Mismatch Method
- Java - REPL (JShell)
- Java - Multi-Release Jar Files
- Java - Private Interface Methods
- Java - Inner Class Diamond Operator
- Java - Multiresolution Image API
- Java - Collection Factory Methods
- Java - Module System
- Java - Nashorn JavaScript
- Java - Optional Class
- Java - Method References
- Java - Functional Interfaces
- Java - Default Methods
- Java - Base64 Encode Decode
- Java - Switch Expressions
- Java - Teeing Collectors
- Java - Microbenchmark
- Java - Text Blocks
- Java - Null Pointer Exception
- Java - Packaging Tools
- Java - Sealed Classes
- Java - Record Classes
- Java - Hidden Classes
- Java - Compact Number Formatting
Java Miscellaneous
- Java - Recursion
- Java - Regular Expressions
- Java - Serialization
- Java - Strings
- Java - Process API Improvements
- Java - Stream API Improvements
- Java - Enhanced @Deprecated Annotation
- Java - CompletableFuture API Improvements
- Java - Array Methods
- Java - Streams
- Java - Datetime Api
- Java 8 - New Features
- Java 9 - New Features
Java APIs & Frameworks
Java Useful Resources
Java - Compact Number Formatting
Java 12 introduces compact formatting where we can format long numbers for decimals, currency, or percentages into short form or long form. For example 1000 to 1K. This is very useful where we've limited space or requirements to show numbers in short form like K for thousand, M for million B for Billon, and so on. We can use custom strings as well to display large numbers.
Create a CompactNumberFormat Instance
To create an instance of CompactNumberFormat for a locale, you can use the related built-in method of NumberFormat.
NumberFormat formatter = NumberFormat.getCompactNumberInstance(Locale.US, NumberFormat.Style.SHORT);
Here we're creating a formatter for US Locale and short format style, that means 1000 will be represented by 1K. Similarly we can create an instance for Long Format as shown below.
NumberFormat formatter = NumberFormat.getCompactNumberInstance(Locale.US, NumberFormat.Style.LONG);
In this case, 1000 will be represented by 1 thousand and so.
Format the Value
Once formatter is created, we can use format() method to get the required formatted number string.
//1000 will be formatted as 1K String formatted = formatter.format(1000) //1000000 will be formatted as 1M formatted = formatter.format(1000000)
Example of Compact Number Formatting
In following example, we're printing long as well as short formatted string retrived using compact number formatting.
package com.tutorialspoint; import java.text.NumberFormat; import java.util.Locale; public class Tester { public static void main(String[] args) { // Create the formatter instance for Long format NumberFormat formatter = NumberFormat.getCompactNumberInstance( Locale.US, NumberFormat.Style.LONG); System.out.println("Long Formats"); // get the formatted strings System.out.println(formatter.format(1000)); System.out.println(formatter.format(1000 * 1000)); System.out.println(formatter.format(1000 * 1000 * 1000)); // Create the formatter instance for Short format formatter = NumberFormat.getCompactNumberInstance( Locale.US, NumberFormat.Style.SHORT); // get the formatted strings System.out.println("Short Formats"); System.out.println(formatter.format(1000)); System.out.println(formatter.format(1000 * 1000)); System.out.println(formatter.format(1000 * 1000 * 1000)); } }
Let us compile and run the above program, this will produce the following result −
Long Formats 1 thousand 1 million 1 billion Short Formats 1K 1M 1B
Compact Number Formatting and Fraction Digits
By default fraction digit is set as zero, but we can set minimum fraction digits as well using following method.
NumberFormat formatter = NumberFormat.getCompactNumberInstance(Locale.US, NumberFormat.Style.SHORT); formatter.setMinimumFractionDigits(3); // It will print 10.012K System.out.println(formatter.format(10012));
Example: Compact Number Formatting with Fractions
In following example, we're printing long as well as short formatted string retrived using compact number formatting.
package com.tutorialspoint; import java.text.NumberFormat; import java.util.Locale; public class Tester { public static void main(String[] args) { // Create the formatter instance for Short format NumberFormat formatter = NumberFormat.getCompactNumberInstance( Locale.US, NumberFormat.Style.SHORT); System.out.println("Without using Fractions"); // get the formatted strings System.out.println(formatter.format(10012)); System.out.println(formatter.format(10000012)); // set the minimum 2 fraction digits to display formatter.setMinimumFractionDigits(2); System.out.println("Using Fractions"); // get the formatted strings System.out.println(formatter.format(10012)); System.out.println(formatter.format(10000012)); } }
Let us compile and run the above program, this will produce the following result −
Without using Fractions 10K 10M Using Fractions 10.01K 10.00M
To Continue Learning Please Login
Login with Google