Console format(String, Object) method in Java with Examples Last Updated : 12 Jun, 2020 Suggest changes Share Like Article Like Report The format(String, Object) method of Console class in Java is used to write a formatted string to the output stream of the console. It uses the specified format string and arguments. Syntax: public Console format(String fmt, Object... args) Parameters: This method accepts two parameters: fmt - It represents the format of the string. args - It represents the arguments that are referenced by the format specifiers in the string format. Return value: This method returns the console. Exceptions: This method throws IllegalFormatException if string format contains an illegal syntax or a format specifier is not compatible with the given arguments or insufficient arguments given the format string or other conditions that are illegal. Note: System.console() returns null in an online IDE. Below programs illustrate format(String, Object) method in Console class in IO package: Program 1: Java // Java program to illustrate // Console format(String, Object) method import java.io.*; public class GFG { public static void main(String[] args) { // Create the console object Console cnsl = System.console(); if (cnsl == null) { System.out.println( "No console available"); return; } String fmt = "%1$4s %2$10s %3$10s%n"; cnsl.format(fmt, "Books", "Author", "Price"); cnsl.format(fmt, "-----", "------", "-----"); cnsl.format(fmt, "DBMS", "Navathe", "800"); cnsl.format(fmt, "Algorithm", "Cormen", "925"); cnsl.format(fmt, "Operating System", "Rajib Mall", "750"); } } Output: Program 2: Java // Java program to illustrate // Console format(String, Object) method import java.io.*; public class GFG { public static void main(String[] args) { // Create the console object Console cnsl = System.console(); if (cnsl == null) { System.out.println( "No console available"); return; } String fmt = "%1$4s %2$10s %3$10s%n"; cnsl.format(fmt, "Items", "Quantity", "Price"); cnsl.format(fmt, "-----", "------", "-----"); cnsl.format(fmt, "Tomato", "1 Kg", "80"); cnsl.format(fmt, "Apple", "3 Kg", "500"); cnsl.format(fmt, "Potato", "2 Kg", "75"); } } Output: References: https://docs.oracle.com/javase/10/docs/api/java/io/Console.html#format(java.lang.String, java.lang.Object...) Create Quiz P pp_pankaj Follow 0 Article Tags : Java Java-Functions Java-IO package Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings7 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java5 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages2 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java4 min readJava Comparator Interface5 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java7 min readFile Handling in Java4 min readJava Method References7 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management3 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers1 min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read My Profile ${profileImgHtml} My Profile Edit Profile My Courses Join Community Transactions Logout Like