zoukankan      html  css  js  c++  java
  • Calendar 得到前一天当前时间

    @Test
        public void test(){    
            //因为Calendar的构造方法是私有的,所以实例化一个Calendar对象用getInstance方法
            Calendar calendar = Calendar.getInstance();        
            calendar.add(Calendar.DATE, -1);    //得到前一天        
            Date date = calendar.getTime();        
            DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");    
            System.out.println(df.format(date));    
            }

    这是一个非常好的实例,易于理解,能够帮助我们轻松掌握Calendar的使用方法。可以看点源码,底层使用Map集合实现的

    public Map<String, Integer> getDisplayNames(int field, int style, Locale locale) {
            if (!checkDisplayNameParams(field, style, ALL_STYLES, LONG, locale,
                                        ERA_MASK|MONTH_MASK|DAY_OF_WEEK_MASK|AM_PM_MASK)) {
                return null;
            }
    
            // ALL_STYLES
            if (style == ALL_STYLES) {
                Map<String,Integer> shortNames = getDisplayNamesImpl(field, SHORT, locale);
                if (field == ERA || field == AM_PM) {
                    return shortNames;
                }
                Map<String,Integer> longNames = getDisplayNamesImpl(field, LONG, locale);
                if (shortNames == null) {
                    return longNames;
                }
                if (longNames != null) {
                    shortNames.putAll(longNames);
                }
                return shortNames;
            }
    
            // SHORT or LONG
            return getDisplayNamesImpl(field, style, locale);
        }
    
        private Map<String,Integer> getDisplayNamesImpl(int field, int style, Locale locale) {
            DateFormatSymbols symbols = DateFormatSymbols.getInstance(locale);
            String[] strings = getFieldStrings(field, style, symbols);
            if (strings != null) {
                Map<String,Integer> names = new HashMap<String,Integer>();
                for (int i = 0; i < strings.length; i++) {
                    if (strings[i].length() == 0) {
                        continue;
                    }
                    names.put(strings[i], i);
                }
                return names;
            }
            return null;
        }
    业务驱动技术,技术是手段,业务是目的。
  • 相关阅读:
    .NET 几种数据绑定控件的区别
    .NET 使用 Highcharts生成扇形图 柱形图
    使用Jquery1.9 版本 来实现全选
    30款jQuery常用网页焦点图banner图片切换
    MVC中使用MVCPager简单分页
    HttpWebRequest 以及WebRequest的使用
    C#中的事件机制
    如何向妻子解释OOD (转)
    linux 设置时间
    git 使用操作
  • 原文地址:https://www.cnblogs.com/sloveling/p/calendar.html
Copyright © 2011-2022 走看看