发布网友 发布时间:2022-04-26 06:46
共2个回答
热心网友 时间:2022-04-16 03:59
import java.text.ParseException;
import java.text.SimpleDateFormat;
public class Cat {
public static void main(String[] args) throws ParseException {
String str = "201104141302";
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddhhmm");
long millionSeconds = sdf.parse(str).getTime();//毫秒
System.out.println(millionSeconds);
}
}
具体操作方式:
将时间字符串转化为 long字符串
将long字符串转化为时间格式化输出
将系统当前时间转换为字符串
热心网友 时间:2022-04-16 05:17
键入语句
public static void main(String[] args) {
Date date = new Date();
Long time = date.getTime();
System.out.println(time);
Date d = new Date(time);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
System.out.println(sdf.format(d));
}
用SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
调用dateFormat.format(time);