java时间处理工具类

/**
* <p>
* Title: 工具类
* </p>
* <p>
* Description: 用来处理时间日期字符串等
* </p>
* <p>
* Copyright: (C) 2006.11 常用方法,需要者随便拿去^-^
* </p>
*
* @author weiking
* @version 1.0
*/

public class UtilTool {

public UtilTool() {
super();
}

/**
* 取当前打印日期
*
* @return
* @throws java.lang.Exception
*/

public String getPrintDate() {
String printDate =
"";
Calendar calendar = new GregorianCalendar();
calendar.setTime(new Date());
printDate += calendar.get(Calendar.YEAR) +
"年";
printDate += (calendar.get(Calendar.MONTH) + 1) +
"月";
printDate += calendar.get(Calendar.DATE) +
"日";
return printDate;
}

/**
* 将指定的日期字符串转化为日期对象
*
* @param dateStr
*            日期字符串
* @return java.util.Date
*/

public static Date getDate(String dateStr, String format) throws Exception {

if (dateStr == null || format == null) {
throw new Exception(
"数据类型异常" + dateStr + "|" + format);
}

SimpleDateFormat df = new SimpleDateFormat(format);

try {
Date date = df.parse(dateStr);
return date;
} catch (Exception ex) {
return null;
}
}

/**
* 将指定日期转换为 Timestamp
*
* @param date
*            指定日期格式为 "20030908"
* @return Timestamp
* @throws Exception
*/

public static Timestamp getTimestamp(String dateStr) throws Exception {
SimpleDateFormat sdf = new SimpleDateFormat(
"yyyy-MM-dd 00:00:00.000");
return Timestamp.valueOf(sdf.format(getDate(dateStr,
"yyyyMMdd")));
}

/**
* 从指定Timestamp中得到相应的日期
*
* @param datetime
*            指定的Timestamp
* @return 日期 "2003-09-08"
*/

public String getDateFromDateTime(Timestamp datetime) {
SimpleDateFormat sdf = new SimpleDateFormat(
"yyyyMMdd");
return sdf.format(datetime).toString();
}

/**
* 得到当前时间的时间戳
*
* @return 当前时间戳
*/

public Timestamp getNowTimestamp() {
long curTime = System.currentTimeMillis();
return new Timestamp(curTime);
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值