欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java默认传入时间段时间的实例

程序员文章站 2024-02-20 15:49:58
实例如下: simpledateformat sdf = new simpledateformat("yyyy-mm-dd"); date date = n...

实例如下:

simpledateformat sdf = new simpledateformat("yyyy-mm-dd");
  date date = new date();
  string nowdate = sdf.format(date);
  calendar c = calendar.getinstance(); 
  c.add(calendar.month, 0);
  c.set(calendar.day_of_month,1);//设置为1号,当前日期既为本月第一天 
  string firstdate = sdf.format(c.gettime());
  if("".equals(form.getbegindate())||form.getbegindate()==null){
   system.out.println("月初"+firstdate);
   form.setbegindate(firstdate);
  }
  if("".equals(form.getenddate())||form.getenddate()==null){
   system.out.println("今天"+nowdate);
   form.setenddate(nowdate);
  }
  string sql = " select count(id) from getdealeraccount("+form.getbegindate()+","+form.getend()+") ";
  system.out.println("报表count"+sql);
  return this.jdbctemplate.queryforobject(sql, long.class);

以上这篇java默认传入时间段时间的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。