首页 > Java

Java写一个方法判断是不是今天

发表于2014-09-05 11:11:06| 1430次阅读| 来源webkfa| 作者小豆豆

摘要:Java写一个方法判断是不是今天
java代码
01package com.webkfa.test;
02 
03import java.text.SimpleDateFormat;
04import java.util.Date;
05public class Test {
06     
07    public static void main(String[] args){
08        boolean bl = isToday(new Date().getTime());
09        if(bl){
10            System.out.println("是今天");
11        }else{
12            System.out.println("不是今天");
13        }
14    }
15     
16    /**
17     * 判断是不是今天
18     * @param m
19     * @return 为true是今天
20     */
21    public static boolean isToday(long m){
22        String oldTime=DateToStr(new Date(m), "yyyy-MM-dd");
23        String newTime=DateToStr(new Date(), "yyyy-MM-dd");
24        if(oldTime.equals(newTime)){
25            return true;
26        }
27        return false;
28    }
29    /**
30     * 日期转换成字符串
31     *
32     * @param date
33     * @param formatStr
34     *            "yyyy-MM-dd HH:mm:ss" "yyyy-MM-dd"
35     * @return str
36     */
37    public static String DateToStr(Date date, String formatStr) {
38        if (formatStr==null || "".equals(formatStr)) {
39            formatStr = "yyyy-MM-dd";
40        }
41        SimpleDateFormat format = new SimpleDateFormat(formatStr);
42        String str = format.format(date);
43        return str;
44    }
45}

相关文章

猜你喜欢

学到老在线代码浏览器 关闭浏览
友情链接: hao123 360导航 搜狗网址导航 114啦网址导航 博客大全
Copyright © 1999-2014, WEBKFA.COM, All Rights Reserved  京ICP备14034497号-1