DateFormat只要 年月日

public static int decDate(String start,String end){
            DateFormat df = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
            DateFormat df1= new SimpleDateFormat("yyyy-MM-dd");
            
            Date date =new Date();
            Date date1 = new Date();
            try {
                    date = df.parse(start);
                    date1 = df1.parse(end);
            } catch (ParseException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
            }
            
            long s = date.getTime();
            long e = date1.getTime();
            return (int)((e-s)/1000/60/60/24);

    }


//服务器返回的时间  和当前的时间
	@SuppressLint("SimpleDateFormat")
	public static int TimeMillis(String args) throws ParseException{
		 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		 Date date = (Date) sdf.parse(args);
	     date.getTime();//服务器返回的时间
	     new Date().getTime();//当前时间
	     
	     return (int)(new Date().getTime()-date.getTime())/1000; 
	}


 java中日期格式之间的转换yyyy-MM-dd HH:mm:ss和毫秒数之间
2013-05-17 19:04 544人阅读 评论(0) 收藏 举报
版权声明:本文为博主原创文章,未经博主允许不得转载。

        //把毫秒数转换成为 yyyy-MM-dd HH:mm:ss存库
        Date date = new Date();
        Long time = date.getTime();
        System.out.println(time);
        Date d = new Date(time);
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        System.out.println(sdf.format(d));
        
        //如何把yyyy-MM-dd HH:mm:ss转换成为毫秒数
        
        
        //yyyy-MM-dd HH:mm:ss 转换成为毫秒格式
        
        SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
        String str3 = "2013-05-14 16:39:56";
        String str7 = "2013-05-14 16:09:56";
        Date sDt3 = sf.parse(str3);
        Date sDt7 = sf.parse(str7);
        long ld3 = sDt3.getTime() ;
        long ld7 = sDt7.getTime() ;
        System.out.println((ld3-ld7));

CharSequence datastart=DateFormat.format("yyyy-MM-dd HH:mm:ss", System.currentTimeMillis());
			datastart.toString();

你可能感兴趣的:(DateFormat只要年月日)