一些工具类

//userid相同去重
for (int i = 0; i < list.size(); i++) {
    for (int j = list.size()-1; j > i; j--) {
        //id相同删掉
        if(list.get(i).getUserId().longValue()==list.get(j).getUserId().longValue()){
            list.remove(j);
        }
    }
}

//当有重复键值时可用:(json)
ObjectMapper obj = new ObjectMapper();
<Map> answerMap = obj.readValue(myExamineAnswer.getAnswer(),new TypeReference<Map<Long,List<String>>>() {});
Set<Entry<Long,List<String>>> entrys = answerMap.entrySet();
entry.getKey()
entry.getValue();

//JS获取URL中参数值(QueryString)
function GetQueryString(name) {
    var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
    var r = window.location.search.substr(1).match(reg);
    if(r != null) return unescape(r[2]);
        return null;
}

时间工具类:

import java.sql.Timestamp;

import java.util.ArrayList;

import java.util.Calendar;

import java.util.Date;

import java.util.GregorianCalendar;

import java.util.List;

public class DateUtils {

    //获取当天的开始时间
    public static java.util.Date getDayBegin() {

        Calendar cal = new GregorianCalendar();
        cal.set(Calendar.HOUR_OF_DAY, 0);
        cal.set(Calendar.MINUTE, 0);
        cal.set(Calendar.SECOND, 0);
        cal.set(Calendar.MILLISECOND, 0);

        return cal.getTime();
    }

    //获取当天的结束时间
    public static java.util.Date getDayEnd() {

        Calendar cal = new GregorianCalendar();
        cal.set(Calendar.HOUR_OF_DAY, 23);
        cal.set(Calendar.MINUTE, 59);
        cal.set(Calendar.SECOND, 59);

        return cal.getTime();
    }

    //获取昨天的开始时间
    public static Date getBeginDayOfYesterday() {

        Calendar cal = new GregorianCalendar();
        cal.setTime(getDayBegin());
        cal.add(Calendar.DAY_OF_MONTH, -1);

        return cal.getTime();
    }

    //获取昨天的结束时间
    public static Date getEndDayOfYesterDay() {

        Calendar cal = new GregorianCalendar();
        cal.setTime(getDayEnd());
        cal.add(Calendar.DAY_OF_MONTH, -1);

        return cal.getTime();
    }

    //获取明天的开始时间
    public static Date getBeginDayOfTomorrow() {

        Calendar cal = new GregorianCalendar();
        cal.setTime(getDayBegin());
        cal.add(Calendar.DAY_OF_MONTH, 1);

        return cal.getTime();
    }

    //获取明天的结束时间
    public static Date getEndDayOfTomorrow() {

        Calendar cal = new GregorianCalendar();
        cal.setTime(getDayEnd());
        cal.add(Calendar.DAY_OF_MONTH, 1);

        return cal.getTime();
    }

    //获取本周的开始时间
    public static Date getBeginDayOfWeek() {

        Date date = new Date();
        if (date == null)  return null;
        Calendar cal = Calendar.getInstance();
        cal.setTime(date);
        int dayofweek = cal.get(Calendar.DAY_OF_WEEK);
        if (dayofweek == 1)  dayofweek += 7;
        cal.add(Calendar.DATE, 2 - dayofweek);

        return getDayStartTime(cal.getTime());
    }

    //获取本周的结束时间
    public static Date getEndDayOfWeek(){

        Calendar cal = Calendar.getInstance();
        cal.setTime(getBeginDayOfWeek());
        cal.add(Calendar.DAY_OF_WEEK, 6);
        Date weekEndSta = cal.getTime();

        return getDayEndTime(weekEndSta);

    }

    //获取上周的开始时间

    public static Date getBeginDayOfLastWeek() {

        Date date = new Date();
        if (date == null)  return null;
        Calendar cal = Calendar.getInstance();
        cal.setTime(date);
        int dayofweek = cal.get(Calendar.DAY_OF_WEEK);
        if (dayofweek == 1)   dayofweek += 7;
        cal.add(Calendar.DATE, 2 - dayofweek - 7);

        return getDayStartTime(cal.getTime());
    }

    //获取上周的结束时间
    public static Date getEndDayOfLastWeek(){

        Calendar cal = Calendar.getInstance();
        cal.setTime(getBeginDayOfLastWeek());
        cal.add(Calendar.DAY_OF_WEEK, 6);
        Date weekEndSta = cal.getTime();

        return getDayEndTime(weekEndSta);

    }

    //获取本月的开始时间
    public static Date getBeginDayOfMonth() {

            Calendar calendar = Calendar.getInstance();

            calendar.set(getNowYear(), getNowMonth() - 1, 1);

            return getDayStartTime(calendar.getTime());

        }

    //获取本月的结束时间
    public static Date getEndDayOfMonth() {

            Calendar calendar = Calendar.getInstance();

            calendar.set(getNowYear(), getNowMonth() - 1, 1);

            int day = calendar.getActualMaximum(5);

            calendar.set(getNowYear(), getNowMonth() - 1, day);

            return getDayEndTime(calendar.getTime());

        }

      //获取上月的开始时间
    public static Date getBeginDayOfLastMonth() {

          Calendar calendar = Calendar.getInstance();

          calendar.set(getNowYear(), getNowMonth() - 2, 1);

          return getDayStartTime(calendar.getTime());

      }

      //获取上月的结束时间
    public static Date getEndDayOfLastMonth() {

          Calendar calendar = Calendar.getInstance();

          calendar.set(getNowYear(), getNowMonth() - 2, 1);

          int day = calendar.getActualMaximum(5);

          calendar.set(getNowYear(), getNowMonth() - 2, day);

          return getDayEndTime(calendar.getTime());

      }

      //获取本年的开始时间
    public static java.util.Date getBeginDayOfYear() {

            Calendar cal = Calendar.getInstance();

            cal.set(Calendar.YEAR, getNowYear());

            // cal.set            cal.set(Calendar.MONTH, Calendar.JANUARY);

            cal.set(Calendar.DATE, 1);

            return getDayStartTime(cal.getTime());

        }

      //获取本年的结束时间
    public static java.util.Date getEndDayOfYear() {

            Calendar cal = Calendar.getInstance();

            cal.set(Calendar.YEAR, getNowYear());

            cal.set(Calendar.MONTH, Calendar.DECEMBER);

            cal.set(Calendar.DATE, 31);

            return getDayEndTime(cal.getTime());

        }

    //获取某个日期的开始时间
    public static Timestamp getDayStartTime(Date d) {

        Calendar calendar = Calendar.getInstance();

        if(null != d) calendar.setTime(d);

        calendar.set(calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH),    calendar.get(Calendar.DAY_OF_MONTH), 0, 0, 0);

        calendar.set(Calendar.MILLISECOND, 0);

        return new Timestamp(calendar.getTimeInMillis());

    }

    //获取某个日期的结束时间
     public static Timestamp getDayEndTime(Date d) {

        Calendar calendar = Calendar.getInstance();

        if(null != d) calendar.setTime(d);

        calendar.set(calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH),    calendar.get(Calendar.DAY_OF_MONTH), 23, 59, 59);

        calendar.set(Calendar.MILLISECOND, 999);

        return new Timestamp(calendar.getTimeInMillis());

    }

    //获取今年是哪一年      
    public static Integer getNowYear() {

              Date date = new Date();

            GregorianCalendar gc = (GregorianCalendar) Calendar.getInstance();

            gc.setTime(date);

            return Integer.valueOf(gc.get(1));

        }

      //获取本月是哪一月     
    public static int getNowMonth() {

              Date date = new Date();

            GregorianCalendar gc = (GregorianCalendar) Calendar.getInstance();

            gc.setTime(date);

            return gc.get(2) + 1;

        }

      //两个日期相减得到的天数      
    public static int getDiffDays(Date beginDate, Date endDate) {

            if (beginDate == null || endDate == null) {

                throw new IllegalArgumentException("getDiffDays param is null!");

            }

            long diff = (endDate.getTime() - beginDate.getTime())

                    / (1000 * 60 * 60 * 24);

            int days = new Long(diff).intValue();

            return days;

        }

    //两个日期相减得到的毫秒数      
    public static long dateDiff(Date beginDate, Date endDate) {

            long date1ms = beginDate.getTime();

            long date2ms = endDate.getTime();

            return date2ms - date1ms;

        }

      //获取两个日期中的最大日期      
      public static Date max(Date beginDate, Date endDate) {

            if (beginDate == null) {

                return endDate;

            }

            if (endDate == null) {

                return beginDate;

            }

            if (beginDate.after(endDate)) {

                return beginDate;

            }

            return endDate;

        }

      //获取两个日期中的最小日期      
      public static Date min(Date beginDate, Date endDate) {

            if (beginDate == null) {

                return endDate;

            }

            if (endDate == null) {

                return beginDate;

            }

            if (beginDate.after(endDate)) {

                return endDate;

            }

            return beginDate;

        }

      //返回某月该季度的第一个月      
      public static Date getFirstSeasonDate(Date date) {

              final int[] SEASON = { 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4 };

            Calendar cal = Calendar.getInstance();

            cal.setTime(date);

            int sean = SEASON[cal.get(Calendar.MONTH)];

            cal.set(Calendar.MONTH, sean * 3 - 3);

            return cal.getTime();

        }

      //返回某个日期下几天的日期      
      public static Date getNextDay(Date date, int i) {

            Calendar cal = new GregorianCalendar();

            cal.setTime(date);

            cal.set(Calendar.DATE, cal.get(Calendar.DATE) + i);

            return cal.getTime();

        }

      //返回某个日期前几天的日期      
      public static Date getFrontDay(Date date, int i) {

            Calendar cal = new GregorianCalendar();

            cal.setTime(date);

            cal.set(Calendar.DATE, cal.get(Calendar.DATE) - i);

            return cal.getTime();

        }

      //获取某年某月到某年某月按天的切片日期集合(间隔天数的集合)
      public static List getTimeList(int beginYear, int beginMonth, int endYear,

                int endMonth, int k) {

            List list = new ArrayList();

            if (beginYear == endYear) {

                for (int j = beginMonth; j <= endMonth; j++) {

                    list.add(getTimeList(beginYear, j, k));

                }

            } else {

                {

                    for (int j = beginMonth; j < 12; j++) {

                        list.add(getTimeList(beginYear, j, k));

                    }

                    for (int i = beginYear + 1; i < endYear; i++) {

                        for (int j = 0; j < 12; j++) {

                            list.add(getTimeList(i, j, k));

                        }

                    }

                    for (int j = 0; j <= endMonth; j++) {

                        list.add(getTimeList(endYear, j, k));

                    }

                }

            }

            return list;

        }

      //获取某年某月按天切片日期集合(某个月间隔多少天的日期集合)
      public static List getTimeList(int beginYear, int beginMonth, int k) {

            List list = new ArrayList();

            Calendar begincal = new GregorianCalendar(beginYear, beginMonth, 1);

            int max = begincal.getActualMaximum(Calendar.DATE);

            for (int i = 1; i < max; i = i + k) {

                list.add(begincal.getTime());

                begincal.add(Calendar.DATE, k);

            }

            begincal = new GregorianCalendar(beginYear, beginMonth, max);

            list.add(begincal.getTime());

            return list;

        }

}
simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String todayBegin = simpleDateFormat.format(DateUtils.getDayBegin());
System.out.println(todayBegin );//输出结果为2018-11-05 00:00:00
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容