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
相關用法
- Java SimpleDateFormat hashCode()用法及代碼示例
- Java SimpleDateFormat clone()用法及代碼示例
- Java SimpleDateFormat setDateFormatSymbols()用法及代碼示例
- Java SimpleDateFormat get2DigitYearStart()用法及代碼示例
- Java SimpleDateFormat equals()用法及代碼示例
- Java SimpleDateFormat toLocalizedPattern()用法及代碼示例
- Java SimpleDateFormat getDateFormatSymbols()用法及代碼示例
- Java SimpleDateFormat applyPattern()用法及代碼示例
- Java SimpleDateFormat format()用法及代碼示例
- Java SimpleDateFormat applyLocalizedPattern()用法及代碼示例
- Java SimpleDateFormat parse()用法及代碼示例
- Java SimpleDateFormat set2DigitYearStart()用法及代碼示例
- Java DecimalFormat toPattern()用法及代碼示例
- Java MessageFormat toPattern()用法及代碼示例
注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 SimpleDateFormat toPattern() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。