一:直接上马拿走:
package cn.wyj.one;import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;/*** 测试时间对象和字符串之间的相互转化* DateFormat抽象类和SimpleDateFormat实现类的使用* @author 86155**/public class Demo2_时间对象和字符串的转化 {public static void main(String[] args) {//把时间对象按照 “格式字符串指定的格式”转换成相应的字符串(这里的yyyy等字符都是规定好的)DateFormat df1 = new SimpleDateFormat("yyyy年MM月dd日 hh:mm:ss");Date d1 = new Date();String str = df1.format(d1);System.out.println(str);}
}