第一种(按照自己想要的格式来获取):java时间日期格式转换
SimpleDateFormat d= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS");
String time=d.format(new Date());
第二种(2017-4-26):
String time2 =&DateInstance().format(new Date());//日期格式精确到日
第三种(2017-4-26 14:48:36):
String time3 =&DateTimeInstance().format(new Date());//格式精确到时分秒 
第四种(14:52:38):
String time4 =&TimeInstance().format(new Date());//只显示出时分秒 
第五种(2017年4月26日 星期三 下午02时54分50秒 CST):
       String time5 =&DateTimeInstance(DateFormat.FULL,DateFormat.FULL).format(new Date());
第六种(2017年4月26日 下午02时57分06秒):
String time6 =&DateTimeInstance(DateFormat.LONG,DateFormat.LONG).format(new Date());
第七种(17-4-26 下午2:59):
  String time7 =&DateTimeInstance(DateFormat.SHORT,DateFormat.SHORT).format(new Date());//显示日期,上下午,时间(精确到秒)
第八种(2017-4-26 15:00:42):
  String time8 =&DateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM).format(new Date());//显示日期,时间(精确到分)