当前位置:  技术问答>java相关

怎样取得当前的系统日期呀?用Date thedate = new Date();不行。

    来源: 互联网  发布时间:2017-03-29

    本文导语:  我要在JSP里取得当前的系统日期,程序如下: Date thedate = new Date(); 运行时提示:No constructor matching Date() found in class java.sql.Date. 另外:要取得当前日期的年、月和日, theyear = thedate.getyear(); themonth = thedate.ge...

我要在JSP里取得当前的系统日期,程序如下:
Date thedate = new Date();
运行时提示:No constructor matching Date() found in class java.sql.Date.

另外:要取得当前日期的年、月和日,
theyear = thedate.getyear();
themonth = thedate.getmonth();
theday = thedate.getday();
其中的变量:theyear,themonth,theday应声明为何种类型?

|
Calendar cal = Calendar.getInstance();
  int iyear = cal.get(Calendar.YEAR );
  int imonth=cal.get(Calendar.MONTH );
  int iday=cal.get(Calendar.DATE);
  String stryear = Integer.toString(iyear);
    String strmonth=Integer.toString(imonth);
    String strday=Integer.toString(iday);

|
public String getEe()//计算当前时间用Date类
     {
      Date cur_date=new Date();
      int year=cur_date.getYear()+1900;
      int month=cur_date.getMonth()+1;
      int day=cur_date.getDate();
      int hour=cur_date.getHours();
      int minutes=cur_date.getMinutes();
      int second=cur_date.getSeconds();
      ee=Integer.toString(year)+"-"+Integer.toString(month)+"-"+Integer.toString(day)+" "+Integer.toString(hour)+":"+Integer.toString(minutes)+":"+Integer.toString(second);
      return ee;
    }

 public String getFf()//日期数据的定制格式用SimpleDateFormat类
    {
      SimpleDateFormat fdata=new SimpleDateFormat("yyyy年MM月dd日 HH:mm");
      Date cur_date=new Date();
      ff=fdata.format(cur_date);
      return ff;
    }

  public String getHh()//日期数据的定制格式用DateFormat类
   {
     Date now=new Date();
     DateFormat fdate=DateFormat.getDateInstance();
     hh=fdate.format(now);
     return hh;
   }

    
 
 

您可能感兴趣的文章:

  • shell下用date命令取得两个时间值,有没有办法获得它们的时间差?
  • 如何取得本周的日期,包括明天的日期?
  • 如何取得文件的日期
  • 怎们取得系统当前日期与星期
  • 如何取得将来的日期?
  • 在JSP中怎样取得两个日期的相隔天数??
  • 在UNIX如何取得昨天的日期
  • 用shell怎么取得昨天的日期
  • 怎样一次取得sqlserver数据库的日期和时间?
  • 请问如何在jsp中取得当前日期的前十天?
  • 请问在jsp中如何取得一个日期,并将其格式化为2001-06-23 11:46:27 的形式?多谢了!
  • 取得系统日期插入表的问题,请指教
  • php日期实例:取得上周,本周,上月,本月,本季度,上季度
  • 怎么判断取得服务器的日期是否是某月的最后一天?
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 脚本取得动态输出
  • 请问哪个函数可以取得微妙(或毫秒)的时间值?
  • 如何取得程序运行时的当前目录?
  • 请问?如何取得系统时间?
  • 如何取得cpu使用率!
  • 在Linux中,IP怎样取得?
  • 如何取得系统运行性能?
  • 请问在solaris下可以取得一个线程的ID号吗?
  • stat取得文件信息的问题
  • 请问linux系统下,用什么函数可以取得hostname和username?
  • 用shell如何取得"5555:Thu Oct 30 09:37:17"中第一个冒号前面的值?
  • 数据库 iis7站长之家
  • 请教在Servlet中如何取得JSP中提交的radio对象和checkbox的值?
  • 如何取得进程执行时间?
  • 你能告诉我如何取得到Request里的名称和值,以及数据库里名称和数据类型?
  • 在Java中如何取得一个字符的ASCII码值?
  • 请问用什么方法取得表中的记录数?是getRowCount么?
  • 请教各位高手一个简单的问题:在JAVA 中如何才能取得一些系统信息?
  • UNIX/LINUX下如何取得精确到“毫秒级”的系统时间?
  • 在oracle裡怎麼樣取得數據庫裡的每一個表名?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3