Saturday, October 11, 2025
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
32352 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6720 POSTS0 COMMENTS
Nicole Veronica
11885 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6840 POSTS0 COMMENTS
Ted Musemwa
7103 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS