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


Java SimpleDateFormat toPattern()用法及代码示例


SimpleDateFormat类的toPattern()方法用于返回日期格式的模式。

用法:

public String toPattern()

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


返回值:该方法返回描述此日期格式的模式字符串。

以下示例程序旨在说明SimpleDateFormat的toPattern()方法的用法:

示例1:

// Java code to illustarte toPattern() method 
  
import java.text.*; 
import java.util.Calendar; 
  
public class SimpleDateFormat_Demo { 
    public static void main(String[] args) 
        throws InterruptedException 
    { 
        SimpleDateFormat SDformat 
            = new SimpleDateFormat(); 
  
        // Initializing Calendar object 
        Calendar cal = Calendar.getInstance(); 
  
        // Getting the Current Date 
        String Todaysdate 
            = SDformat.format(cal.getTime()); 
  
        // Displaying the date 
        System.out.println("Current Date: "
                           + Todaysdate); 
  
        // Using toPattern() method 
        // to Print the Date Pattern 
        System.out.println("The Date Pattern- "
                           + SDformat.toPattern()); 
    } 
}
输出:
Current Date: 1/29/19 6:05 AM
The Date Pattern- M/d/yy h:mm a


相关用法


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