Java日期格式处理

Posted 天涯韵

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java日期格式处理相关的知识,希望对你有一定的参考价值。

处理日期格式,运行main函数即可:

package testutil;

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;

/**
 * Created by wangpeng on 2018/2/26.
 */
public class DateFormat {

    public static void main(String[] args) {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
        SimpleDateFormat sdf2 = new SimpleDateFormat("MM/dd/yyyy hh:mm:ss");
        Date date = new Date();
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(date);
        calendar.add(Calendar.DAY_OF_MONTH, -1);
        date = calendar.getTime();
        System.out.println(sdf.format(date));
        System.out.println(sdf1.format(date));
        System.out.println(sdf2.format(date));
    }
}

 

以上是关于Java日期格式处理的主要内容,如果未能解决你的问题,请参考以下文章

java读取excel时间格式出现数字怎么处理

如何从我的 DatePicker 片段中传输格式化的日期字符串?

Java日期处理格式不正确

Java8日期处理,十八个示例让你更加优雅地处理日期格式

Java8日期处理,十八个示例让你更加优雅地处理日期格式

常用python日期日志获取内容循环的代码片段