當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java DateFormat setLenient()用法及代碼示例


DateFormat類中的setLenient(boolean leniency)方法用於指定此DateFormat對象的日期和時間的解釋是否寬鬆。

用法:

public void setLenient(boolean leniency)

參數:該方法采用一種布爾類型的參數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://docs.oracle.com/javase/7/docs/api/java/text/DateFormat.html#setLenient(boolean)



相關用法


注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 DateFormat setLenient() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。