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