Friday, June 19, 2026
HomeLanguagesJavaDateFormat isLenient() Method in Java with Examples

DateFormat isLenient() Method in Java with Examples

The isLenient() method in DateFormat class is used to know and understand whether the parsing of date and time of this DateFormat object is to be considered lenient or not.

Syntax:

public boolean isLenient()

Parameters: The method does not take any parameters.

Return Value: The method either returns True if the interpretation of this Calendar is lenient else False.

Below programs illustrate the working of isLenient() Method of Calendar class:
Example 1:




// Java code to illustrate
// isLenient() method
  
import java.text.*;
import java.util.*;
  
public class DateFormat_Demo {
    public static void main(String[] args)
    {
        // Initializing the first formatter
        DateFormat DFormat
            = DateFormat.getDateTimeInstance();
        System.out.println("Object: "
                           + DFormat);
  
        // String formatting
        String str
            = DFormat.format(new Date());
  
        // Displaying the string time
        System.out.println(str);
  
        System.out.println("Leniency: "
                           + DFormat.isLenient());
    }
}


Output:

Object: java.text.SimpleDateFormat@7945516e
Mar 28, 2019 4:23:01 AM
Leniency: true

Example 2:




// Java code to illustrate
// isLenient() method
  
import java.text.*;
import java.util.*;
  
public class DateFormat_Demo {
    public static void main(String[] argv)
    {
        // Initializing the first formatter
        DateFormat DFormat
            = DateFormat.getDateInstance();
        System.out.println("Object: "
                           + DFormat);
  
        // String formatting
        String str
            = DFormat.format(new Date());
  
        // Displaying the string time
        System.out.println(str);
  
        System.out.println("Leniency: "
                           + DFormat.isLenient());
    }
}


Output:

Object: java.text.SimpleDateFormat@ce9bf0a5
Mar 28, 2019
Leniency: true

Reference: https://docs.oracle.com/javase/7/docs/api/java/text/DateFormat.html#isLenient()

RELATED ARTICLES

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6898 POSTS0 COMMENTS
Nicole Veronica
12014 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6965 POSTS0 COMMENTS