当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java DateFormat isLenient()用法及代码示例


DateFormat类中的isLenient()方法用于了解和理解此DateFormat对象的日期和时间解析是否被认为是宽松的。

用法:

public boolean isLenient()

参数:该方法不带任何参数。


返回值:如果此Calendar的解释宽松,则该方法返回True,否则返回False。

以下示例程序旨在说明Calendar类的isLenient()方法的用法:
示例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()); 
    } 
}
输出:
Object: java.text.SimpleDateFormat@7945516e
Mar 28, 2019 4:23:01 AM
Leniency: true

示例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()); 
    } 
}
输出:
Object: java.text.SimpleDateFormat@ce9bf0a5
Mar 28, 2019
Leniency: true

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



相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 DateFormat isLenient() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。