{{theTime}}

Search This Blog

Total Pageviews

java.util.MissingFormatArgumentException: Format specifier 's'


How to resolve MissingFormatArgumentException.

java.util.MissingFormatArgumentException: Format specifier 's'
at java.util.Formatter.format(Formatter.java:2487)
at java.util.Formatter.format(Formatter.java:2423)
at java.lang.String.format(String.java:2845)

The passed in arguments should match with number of %s in String.format() method.


String.format("My name %s and my city %s","P"); Throws Exception

String.format("My name %s and my city %s","Java", "JavaCity");


1 comment:

Vale Co Xenia said...

Hi, Great.. Tutorial is just awesome..It is really helpful for a newbie like me.. I am a regular follower of your blog. Really very informative post you shared here. Kindly keep blogging. If anyone wants to become a Java developer learn from Java Training in Chennai. or learn thru Java Online Training from India . Nowadays Java has tons of job opportunities on various vertical industry.

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...