$show=/label

Java String format() Examples

SHARE:

A quick guide on how to format the strings in java using String format() method.

Java String format​() method

String format method is used to format the string in the specified format. This method can be used as String output format by passing multiple arguments because the second parameter is the variable-arguments(Var-Args). Recommend to read in-depth usage of Var-Args in Java. We can pass any type of object here such as String, Float, Double etc together. You will find the examples on each in this course.

This format method is introduced in java 1.5 version and it is overloaded and static methods

Java String format() Examples

Java String format​() method Syntax: 

// Takes default locale 
public static String format​(String format, Object... args)
//Takes passed locale instead of default locale value
public static String format​(Locale l, String format, Object... args)



Java String format() Parameters:

    
format - A format string
    
args - Arguments referenced by the format specifiers in the format string. If there are more arguments than format specifiers, the extra arguments are ignored. The number of arguments is variable and may be zero. The maximum number of arguments is limited by the maximum dimension of a Java array as defined by The Java™ Virtual Machine Specification. The behaviour of a null argument depends on the conversion.

l - The locale to apply during formatting. If l is null then no localization is applied.

Formatter: 

Formatter is an interpreter for printf-style format strings. This class provides support for layout justification and alignment, common formats for numeric, string, and date/time data, and locale-specific output. Common Java types such as byte, BigDecimal, and Calendar are supported. Limited formatting customization for arbitrary user types is provided through the Formattable interface. 

Java String format() Returns:

    A formatted string

Java String format() Throws:

    IllegalFormatException - If a format string contains an illegal syntax, a format specifier that is incompatible with the given arguments, insufficient arguments given the format string, or other illegal conditions. For specification of all possible formatting errors, see the Details section of the formatter class specification.

Java String format​() Method Example

Program to format the string in different specified formats such as String, Numeric, Additional spaces. format method takes by default locale.
The locale always used is the one returned by Locale.getDefault(Locale.Category) with FORMAT category specified.

package examples.java.w3schools.string;

public class StringFormatExample {
 public static void main(String[] args) {

  String blogName = "Java-W3schools blog";

  String format1 = String.format("String methods on website %s ", blogName);
  System.out.println("String formatted value: " + format1);
  
  // Float format
  String format2 = String.format("String methods on website %f9 ", 12.345f);
  System.out.println("Float formatted string value: " + format2);
 }
}


Output:


The above program produces the below output.


String formatted value: String methods on website Java-W3schools blog 
Float formatted string value: String methods on website 12.3450009 


Java String format​() Method Example with multiple arguments:



Example Program to format the string with multiple string arguments. We can pass String, Float values at once to the format method.
package examples.java.w3schools.string;

public class StringFormatExample {
 public static void main(String[] args) {

  String blogName = "Java-W3schools blog";
  float worth = 15000.99f;

  String value = String.format("Welcome to the famous %S with worth $%5f", blogName, worth);
  System.out.println("Formatted String value: " + value);
  
 }
}


Output:

The above program produces the below output.


Formatted String value: Welcome to the famous Java-W3schools blog with worth $15000.990234


Java String format() : Converting a String to Uppercase

Example program to convert a lowercase String to Uppercase using format​ Method. Converting to uppercase is done using '%S'. Refer the below code.
  String blogName = "Java-W3schools";

  String value = String.format("Welcome to the famous %S Blog", blogName);
  System.out.println("Formatted String value: " + value);


Output:


The above code produces the below output. See the uppercase text in the output.
Formatted String value: Welcome to the famous JAVA-W3SCHOOLS Blog


Java String format() : Example program to make a number to 10 digits always: 



In this program, We will see how to make always a number to 10 digits if number is having 9 digits or below. This also can be achieved using format method.
  String value1 = String.format("Number %010d", 12345);
  System.out.println("Formatted Number value 1: " + value1);
  
  String value2 = String.format("Number %010d", 999);
  System.out.println("Formatted Number value 2: " + value2);
  
  String value3 = String.format("Number %010d", 7777777);
  System.out.println("Formatted Number value 3: " + value3);

Output:


Observe the output always has 10 digits even though input is not having 10 digits in it.


Formatted Number value 1: Number 0000012345
Formatted Number value 2: Number 0000000999
Formatted Number value 3: Number 0007777777


Java String format() - When IllegalFormatException will be thrown:


Example Program to see how IllegalFormatException will be thrown and what is the scenario.

For the format method crucial is format that we declare whether it is %s, %S, %f or any valid format. Just guess what will happen if invalid format is passed.
 String value1 = String.format("Format %x ", "hello");

Here passed "%x" is the specified format but where 'x' is a invalid character as per the format rules for string type value.


Output:


A run-time exception is thrown stating x is not a string type.


Exception in thread "main" java.util.IllegalFormatConversionException: x != java.lang.String
 at java.base/java.util.Formatter$FormatSpecifier.failConversion(Formatter.java:4426)
 at java.base/java.util.Formatter$FormatSpecifier.printInteger(Formatter.java:2938)
 at java.base/java.util.Formatter$FormatSpecifier.print(Formatter.java:2892)
 at java.base/java.util.Formatter.format(Formatter.java:2673)
 at java.base/java.util.Formatter.format(Formatter.java:2609)
 at java.base/java.lang.String.format(String.java:2897)
 at w3schools/examples.java.w3schools.string.StringFormatExample.main(StringFormatExample.java:7)


Java String format​ method Internal Implementation:




The below code is the internal implementation. Internally, Formatter class does all the stuff what looks string format does.



format(String format, Object... args):



   public static String format(String format, Object... args) {
        return new Formatter().format(format, args).toString();
    }

Locale public static String format:


  public static String format(Locale l, String format, Object... args) {
        return new Formatter(l).format(format, args).toString();
    }

Please post your questions in the comment section. We will get you the right answers.

Ref API

Java String Method Exampls

COMMENTS

BLOGGER

About Us

Author: Venkatesh - I love to learn and share the technical stuff.
Name

accumulo,1,ActiveMQ,2,Adsense,1,API,37,ArrayList,18,Arrays,24,Bean Creation,3,Bean Scopes,1,BiConsumer,1,Blogger Tips,1,Books,1,C Programming,1,Collection,8,Collections,37,Collector,1,Command Line,1,Comparator,1,Compile Errors,1,Configurations,7,Constants,1,Control Statements,8,Conversions,6,Core Java,149,Corona India,1,Create,2,CSS,1,Date,3,Date Time API,38,Dictionary,1,Difference,2,Download,1,Eclipse,3,Efficiently,1,Error,1,Errors,1,Exceptions,8,Fast,1,Files,17,Float,1,Font,1,Form,1,Freshers,1,Function,3,Functional Interface,2,Garbage Collector,1,Generics,4,Git,9,Grant,1,Grep,1,HashMap,2,HomeBrew,2,HTML,2,HttpClient,2,Immutable,1,Installation,1,Interview Questions,6,Iterate,2,Jackson API,3,Java,32,Java 10,1,Java 11,6,Java 12,5,Java 13,2,Java 14,2,Java 8,128,Java 8 Difference,2,Java 8 Stream Conversions,4,java 8 Stream Examples,12,Java 9,1,Java Conversions,14,Java Design Patterns,1,Java Files,1,Java Program,3,Java Programs,114,Java Spark,1,java.lang,4,java.util. function,1,JavaScript,1,jQuery,1,Kotlin,11,Kotlin Conversions,6,Kotlin Programs,10,Lambda,2,lang,29,Leap Year,1,live updates,1,LocalDate,1,Logging,1,Mac OS,3,Math,1,Matrix,6,Maven,1,Method References,1,Mockito,1,MongoDB,3,New Features,1,Operations,1,Optional,6,Oracle,5,Oracle 18C,1,Partition,1,Patterns,1,Programs,1,Property,1,Python,2,Quarkus,1,Read,1,Real Time,1,Recursion,2,Remove,2,Rest API,1,Schedules,1,Serialization,1,Servlet,2,Sort,1,Sorting Techniques,8,Spring,2,Spring Boot,23,Spring Email,1,Spring MVC,1,Streams,31,String,61,String Programs,28,String Revese,1,StringBuilder,1,Swing,1,System,1,Tags,1,Threads,11,Tomcat,1,Tomcat 8,1,Troubleshoot,26,Unix,3,Updates,3,util,5,While Loop,1,
ltr
item
JavaProgramTo.com: Java String format() Examples
Java String format() Examples
A quick guide on how to format the strings in java using String format() method.
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjRjYNzgmIakvLEn6PeVhjl5xSBz4jkvFfmPhfWC_JwL36UOWG1pfRbMCOG-LPC3HHGmVVSoXApcmnponMN5mKSCOA3Mv00qOvEZSjcK8za4swM9XMpZ1PhujRrAuXCT34O6ZFr_xjVpLc/w400-h295/Java+String+format%2528%2529+Examples.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjRjYNzgmIakvLEn6PeVhjl5xSBz4jkvFfmPhfWC_JwL36UOWG1pfRbMCOG-LPC3HHGmVVSoXApcmnponMN5mKSCOA3Mv00qOvEZSjcK8za4swM9XMpZ1PhujRrAuXCT34O6ZFr_xjVpLc/s72-w400-c-h295/Java+String+format%2528%2529+Examples.png
JavaProgramTo.com
https://www.javaprogramto.com/2019/03/java-string-format.html
https://www.javaprogramto.com/
https://www.javaprogramto.com/
https://www.javaprogramto.com/2019/03/java-string-format.html
true
3124782013468838591
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content