如何在不使用任何已弃用的类的情况下将日期从一种格式转换为另一种格式的另一种日期对象?

如何在不使用任何已弃用的类的情况下将日期从一种格式转换为另一种格式的另一种日期对象?

我想将date1格式的日期转换为date2格式的日期对象。

    SimpleDateFormat simpleDateFormat = new SimpleDateFormat("MMMM dd, yyyy");
    SimpleDateFormat simpleDateFormat1 = new SimpleDateFormat("yyyyMMdd");
    Calendar cal = Calendar.getInstance();
    cal.set(2012, 8, 21);
    Date date = cal.getTime();
    Date date1 = simpleDateFormat.parse(date);
    Date date2 = simpleDateFormat.parse(date1);
    println date1
    println date2


慕娘9325324
浏览 455回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java