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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。