开发中选哟获取当前时间的各种格式,
package test;import java.text.SimpleDateFormat;
import java.util.Date;public class test2 {
public static void main(String[] args) {
SimpleDateFormat s = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");String s1 = s.format(new Date());System.out.println(s1);SimpleDateFormat s2 = new SimpleDateFormat("yyyyMMdd");String s3 = s2.format(new Date());System.out.println(s3);}
}
结果:
需要什么格式的同理去修改SimpleDateFormat()括号里面的格式就可以。