java中获取系统的当前时间以及String转Date类型
⼀. 获取当前系统时间和⽇期并格式化输出:
package com.fig;//package com.fig;
SimpleDateFormat;
import java.util.Date;
public class WebConfig {
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();
}
java中获取当前⽇期和时间的⽅法,这个可以修改时间
import java.util.Date;
import java.util.Calendar;
SimpleDateFormat;
public class TestDate{
public static void main(String[] args){
Date now = new Date();
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");//可以⽅便地修改⽇期格式
String hehe = dateFormat.format( now );
System.out.println(hehe);
Calendar c = Instance();//可以对每个时间域单独修改
int year = c.get(Calendar.YEAR);
java时间日期格式转换int month = c.get(Calendar.MONTH);
int date = c.get(Calendar.DATE);
int hour = c.get(Calendar.HOUR_OF_DAY);
int minute = c.get(Calendar.MINUTE);
int second = c.get(Calendar.SECOND);
System.out.println(year + "/" + month + "/" + date + " " +hour + ":" +minute + ":" + second);
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论