package DateProject; /** * 时间和字符串的相互转换 * @author 4090039qrh * */ import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class TestDateFormat { public static void main(String[] args) throws Throwable { //时间-->为字符串 df.format() Date d=new Date(1987600000); DateFormat df=new SimpleDateFormat("yyyy-MM-dd"); String str=df.format(d); System.out.println(str); //字符串-->为时间 df.parse() String str1="2020/3/8"; DateFormat df1=new SimpleDateFormat("yyyy/MM/dd");//格式要一致 Date d1 = df1.parse(str1); System.out.println(d1); } }