已知1970.1.1到现在的毫秒数,返回格式化的时间

Date   date=   new   Date();  
date.getTime();  
SimpleDateFormat   sdf   =   new   SimpleDateFormat("",Locale.CHINESE);  
sdf.applyPattern("yyyy年MM月dd日_HH点mm分ss秒");  
String   timeStr   =   sdf.format(date); 

你可能感兴趣的:(java)