首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    获取指定日期的前一天23:59:59

    /**  * 获得指定日期的前一天的23:59:59  *  * @param specifiedDay 指定日期  * @return 前一天日期 23:59:59  */ public static Date getSpecifiedDayBefore(Date specifiedDay) {     if (null == specifiedDay) {         return null;     }     Date newDate = null;     try {         Calendar c = Calendar.getInstance();         c.setTime(specifiedDay);         int day = c.get(Calendar.DATE);         c.set(Calendar.DATE, day - 1);         SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");         String newDateStr = simpleDateFormat.format(c.getTime()) + " 23:59:59";         SimpleDateFormat newSimpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");         newDate = newSimpleDateFormat.parse(newDateStr);     } catch (ParseException e) {         log.info("日期转换错误" + e.getMessage());     }     return newDate; }

    01

    好多Javascript日期选择器呀–2

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml"> <head> <title>calender select</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <style type='text/css'> body {      font-family:"Lucida sans unicode", sans-serif;      font-size:12px;      margin:0;      padding:0;      height:100%;      } #basis {      display:inline;      position:relative;      } #calender {      position:absolute;      top:30px;      left:0;      width:220px;      background-color:#fff;      border:3px solid #ccc;      padding:10px;      z-index:10;      } #control {      text-align:center;      margin:0 0 5px 0;      } #control select {      font-family:"Lucida sans unicode", sans-serif;      font-size:11px;      margin:0 5px;      vertical-align:middle;      } #calender .controlPlus {      padding:0 5px;      text-decoration:none;      color:#333;      } #calender table {      empty-cells: show;      width:100%;      font-size:11px;      table-layout:fixed;      } #calender .weekdays td{      text-align:right;      padding:1px 5px 1px 1px;      color:#333;      } #calender .week td {      text-align:right;      cursor:pointer;      border:1px solid #fff;      padding:1px 4px 1px 0;      } #calender .week .today {       background-color:#ccf;      border-color:#ccf;      } #calender .week .holiday {      font-weight: bold;      } #calender .week .hoverEle {      border-color:#666;      background-color:#99f;      color:#000;      }

    01
    领券