📌  相关文章
📜  Java中的 DateFormat setLenient() 方法及示例

📅  最后修改于: 2022-05-13 01:55:28.315000             🧑  作者: Mango

Java中的 DateFormat setLenient() 方法及示例

DateFormat 类中的setLenient(boolean leniency)方法用于指定对这个 DateFormat 对象的日期和时间的解释是否宽松。

句法:

public void setLenient(boolean leniency)

参数:该方法接受一个布尔类型的参数leniency,它指的是DateFormat对象的日历模式。布尔值 true 打开宽大模式, false 关闭宽大模式。

返回值:该方法不返回任何值。

下面的程序说明了 Calendar 类的 setLenient() 方法的工作:
示例 1:

// Java code to illustrate
// setLenient() 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());
  
        // Changing the leniency
        DFormat.setLenient(false);
  
        // Displaying the modified leniency
        System.out.println("New Leniency: "
                           + DFormat.isLenient());
    }
}
输出:
Object: java.text.SimpleDateFormat@7945516e
Mar 28, 2019 6:03:48 PM
Leniency: true
New Leniency: false

示例 2:

// Java code to illustrate
// setLenient() method
  
import java.text.*;
import java.util.*;
  
public class DateFormat_Demo {
    public static void main(String[] args)
    {
        // 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());
  
        // Changing the leniency
        DFormat.setLenient(false);
  
        // Displaying the modified leniency
        System.out.println("New Leniency: "
                           + DFormat.isLenient());
    }
}
输出:
Object: java.text.SimpleDateFormat@ce9bf0a5
Mar 28, 2019
Leniency: true
New Leniency: false

参考: https: Java/text/DateFormat.html#setLenient(boolean)