java中如何按一定的格式输出时间, 必须给出例子
Posted mark-to-win
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中如何按一定的格式输出时间, 必须给出例子相关的知识,希望对你有一定的参考价值。
import java.util.*;
import java.text.SimpleDateFormat;
public class Test {
public static void main(String[] args) {
Date date = new Date();//获取当前日期
SimpleDateFormat df = new SimpleDateFormat("yyyy-MMM-dd kk:mm:ss a");
System.out.println(df.format(date));//按yyyy-MMM-dd kk:mm:ss a这个格式来格式化date
SimpleDateFormat df1 = new SimpleDateFormat(
"yyyyy.MMMMM.dd GGG hh:mm aaa");
。。。。。。。。。。。。。。。。。。
详情请见:http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner2_web.html#FormatTime
以上是关于java中如何按一定的格式输出时间, 必须给出例子的主要内容,如果未能解决你的问题,请参考以下文章