zoukankan      html  css  js  c++  java
  • 代码空间项目 -- 获取当前时间之前的某一天-Calender类的使用

    Calendar类的静态方法getInstance()可以初始化一个日历对象:Calendar now = Calendar.getInstance(); 
    1.Calendar的基本用法
    calendar.add(Calendar.DATE, -1);    //得到前一天
    calendar.add(Calendar.MONTH, -1);    //得到前一个月
    int year = calendar.get(Calendar.YEAR);
    int month = calendar.get(Calendar.MONTH)+1;
    2.Calendar和Date的转化
    (1) Calendar转化为Date
    Calendar cal=Calendar.getInstance();
    Date date=cal.getTime();
    (2) Date转化为Calendar
    Date date=new Date();
    Calendar cal=Calendar.getInstance();
    cal.setTime(date);
    3.格式化输出日期时间
    Date date=new Date();
    SimpleDateFormat df=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
    4.案例
    a.网上找的小案例 判断当前日期是星期几
    public static int dayForWeek(String pTime) throws Exception {  
    SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");  
    Calendar c = Calendar.getInstance();  
    c.setTime(format.parse(pTime));  
    int dayForWeek = 0;  
    if(c.get(Calendar.DAY_OF_WEEK) == 1){  
      dayForWeek = 7;  
    }else{  
      dayForWeek = c.get(Calendar.DAY_OF_WEEK) - 1;  
    }  
    return dayForWeek;  

    b.项目中的案例 获取某一天的时间
    public String getTime(String condition){
            Date dNow = new Date();//当前时间
            Date dBefore = new Date();

            Calendar calendar = Calendar.getInstance();//得到日历
            calendar.setTime(dNow);//date转Calendar
            if(condition.equals("week")){
                calendar.add(Calendar.DAY_OF_MONTH, -7);//设置为前七天
            }else if(condition.equals("month")){
                calendar.add(Calendar.MONTH, -1);//设置为一个月前
            }
            dBefore = calendar.getTime();//Calendar转date

            SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");//设置时间格式
            return sdf.format(dBefore);//返回日期
    }
  • 相关阅读:
    移植thinkPHP的dump()函数
    PHP生成linux命令行进度条
    没有ORM库的时候,通过PDO连接MySQL的方法
    mysql json字符串 解析成对应字段
    linux上安装并启动nginx
    linux上启动redis
    mui的input搜索框里的清除按钮的点击监听事件
    miniui 修改input样式及弹出框按钮文字
    js 删除数组元素的方法
    miniui反选
  • 原文地址:https://www.cnblogs.com/zmc-change/p/5374622.html
Copyright © 2011-2022 走看看