码迷,mamicode.com
首页 > 其他好文 > 详细

常用的当前时间(返回String类型)

时间:2018-06-11 10:57:11      阅读:498      评论:0      收藏:0      [点我收藏+]

标签:get   类型   settime   str   tar   ati   form   for   return   

public class TimeUtil {
/**
* 创建人:zhiyuan
* 创建时间:2018年6月9日上午11:31:02
* 方法描述:以yyyy-MM-dd查询当前时间
*/
public String qryYMDTime() {
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
String time = sdf.format( new Date());
return time;
}

/**
* 创建人:zhiyuan
* 创建时间:2018年6月9日上午11:32:39
* 方法描述:以yyyy-MM-dd查询明日时间
*/
public String qryTommorrowYMDTime() {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date date = new Date();
Date tomorrow = addDay(date,1);
String time = sdf.format(tomorrow);
return time;
}
/**
* 创建人:zhiyuan
* 创建时间:2018年6月9日上午11:33:52
* 方法描述:以yyyy-MM-dd HH:mm:ss查询当前时间
*/
public String qryYMDHMSTime() {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date date = new Date();
Date tomorrow = addDay(date,1);
String time = sdf.format(tomorrow);
return time;
}
/**
* 创建人:zhiyuan
* 创建时间:2018年6月9日上午11:35:48
* 方法描述:以HH:mm:ss查询当前时间
*/
public String qryHMSTime() {
SimpleDateFormat cTimeNow = new SimpleDateFormat("HH:mm:ss");
String time = cTimeNow.format(new Date());
return time;
}
/**
* 创建人:zhiyuan
* 创建时间:2018年6月9日上午11:33:07
* 方法描述:将data+num天
*/
public static Date addDay(Date date, int num) {
Calendar startDT = Calendar.getInstance();
startDT.setTime(date);
startDT.add(Calendar.DATE, num);
return startDT.getTime();
}
}

常用的当前时间(返回String类型)

标签:get   类型   settime   str   tar   ati   form   for   return   

原文地址:https://www.cnblogs.com/zhiy/p/9165367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!