| | |
| | | return null; |
| | | } |
| | | } |
| | | public static Date getDateFromShortString(String strDate) { |
| | | if (StringUtils.isEmpty(strDate)) { |
| | | return null; |
| | | } |
| | | try { |
| | | return sdfLong.parse(strDate); |
| | | } catch (Exception ex) { |
| | | return null; |
| | | } |
| | | } |
| | | |
| | | |
| | | // ----------------------------------------------------------------------- |
| | |
| | | } |
| | | |
| | | /** |
| | | * 获取当前日期是星期几<br> |
| | | * |
| | | * @param dt |
| | | * @return 当前日期是星期几 |
| | | */ |
| | | public static String getWeekZhouOfDate(Date dt) { |
| | | String[] weekDays = { "周日", "周一", "周二", "周三", "周四", "周五", "周六" }; |
| | | Calendar cal = Calendar.getInstance(); |
| | | cal.setTime(dt); |
| | | |
| | | int w = cal.get(Calendar.DAY_OF_WEEK) - 1; |
| | | if (w < 0) |
| | | { |
| | | w = 0; |
| | | } |
| | | |
| | | return weekDays[w]; |
| | | } |
| | | /** |
| | | * 获取星期数 |
| | | * |
| | | * @param dt |