获取时间

Posted L伟铭

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取时间相关的知识,希望对你有一定的参考价值。

import java.util.Date;
import java.text.SimpleDateFormat;

public class NowString {
public static void main(String[] args) {
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式
System.out.println(df.format(new Date()));// new Date()为获取当前系统时间
}
}

 

有时候要把String类型的时间转换为Date类型,通过以下的方式,就可以将你刚得到的时间字符串转换为Date类型了。

SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");

java.util.Date time=null;
try {
   time= sdf.parse(sdf.format(new Date()));

} catch (ParseException e) {

   e.printStackTrace();
}

 

当前月:int month = c.get(Calendar.MONTH)+1;

以上是关于获取时间的主要内容,如果未能解决你的问题,请参考以下文章

js如何获取时间

php获取今天某个时间的时间戳的方法

Android 怎么获取当前的时间戳

如何获取当前的日期和时间

php怎么获取今天零点的时间戳

如何在shell中获取时间戳