Java格式化月份
如何以MMMM格式,格式化時間?
解決方法
這個例子中,月份格式化使用SimpleDateFormat類的SimpleDateFormat('MMMM')構造函數和sdf.format(date) 方法。
import java.text.SimpleDateFormat; import java.util.Date; public class Main{ public static void main(String[] args){ Date date = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("MMMM"); System.out.println("Current Month in MMMM format : " + sdf.format(date)); } }
結果
上麵的代碼示例將產生以下結果。其結果將取決於當前的係統日期變化
Current Month in MMMM format : May