[java]代码库
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* 日期格式化
* @author
*
*/
public class SimpleDateFormatTest {
public static void main(String[] args) {
// 在构造器中传入日期样式
// SimpleDateFormat sdf=new SimpleDateFormat(
// "yyyy.MM.dd G 'at' HH:mm:ss z");
//SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
SimpleDateFormat sdf=new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒");
// 当前系统时间
Date date = new Date();
// 调用format(Date date)对象传入的日期参数进行格式化
// format(Date date)将日期转化成字符串
String formatDate = sdf.format(date);
System.out.println("今天的日期为:" + formatDate);
}
}
by: 发表于:2017-07-13 10:57:42 顶(0) | 踩(0) 回复
??
回复评论