将Date类型装换为String类型的时间格式_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 将Date类型装换为String类型的时间格式

将Date类型装换为String类型的时间格式

 2015/4/30 13:07:53  Dong_Android  程序员俱乐部  我要评论(0)
  • 摘要:/***将Date类型装换为String类型的时间格式*@paramid//转换格式的ID*@paramdate//时间参数*@return*/publicstaticStringToStringTime(intid,Datedate){StringresultTime=null;Longtime=System.currentTimeMillis();SimpleDateFormatformat=null;switch(id){case1:format=newSimpleDateFormat
  • 标签: 时间格式
/**
* 将Date类型装换为String类型的时间格式
* @param id   // 转换格式的ID
* @param date // 时间参数
* @return
*/
public static String ToStringTime(int id, Date date) {
String resultTime = null;
Long time = System.currentTimeMillis();
SimpleDateFormat format = null;
switch (id) {
case 1:
format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
break;
case 2:
format = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
break;
case 3:
format = new SimpleDateFormat("yyyy年MM月dd日HH:mm:ss");
break;
case 4:
format = new SimpleDateFormat("HH:mm");
break;
case 5:
format = new SimpleDateFormat("MM月dd日HH:mm");
break;
case 6:
format = new SimpleDateFormat("yyyy-MM-dd");
break;
}
resultTime = format.format(date);
return resultTime;
}
发表评论
用户名: 匿名