zoukankan      html  css  js  c++  java
  • JAVA 响应时,按照指定的日期格式返回

    说明:

    数据响应时,指定日期格式为“yyyy/MM/dd”,需要注意的是,接收的数据是String类型的,返回的数据是Date类型的。

    第一种方式:在属性上添加注解(无效)

    @JsonFormat(pattern="yyyy/MM/dd")
    private Date createData;

    第二种方式:直接通过format的方式(有效)

        public String getCreateDate() {
            if (createDate == null) {
                return "";
            }
            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy/MM/dd");
            return simpleDateFormat.format(createDate);
        }
    
        public void setAgreeDate(Date createDate) {
            this.createDate= createDate;
        }

    第三:附上Date和String转换的方法

    package datetest;
    
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    
    public class DataTest {
    
     
        public static void main(String[] args) {
          
            //将Date类型转成String类
           
            Date now=new Date();
            SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmss");
            String data=dateFormat.format(now);
           
            //将String类型转成Date类型
            String  mydate="2014/2/2 17:02:12";
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
            try {
                Date date=sdf.parse(mydate);
           
            } catch (ParseException ex) {
                Logger.getLogger(DataTest.class.getName()).log(Level.SEVERE, null, ex);
            }
        }
    }

    以上是我的分享,如果大家有更好的方法,可以给我留言哦。

  • 相关阅读:
    git 拉取远程代码 git branch -vv --all
    常用命令统计
    topology key
    gstreamer 相关直播源(rtmp rtsp)
    汉诺塔问题 最简单的图文讲解递归实现
    RTP 用ffmpeg
    kurento + nodejs 开源项目 webRTC 转成 RTMP输出
    RTP SDP 详解 RTCP 附带说了一下SRTP RTSP
    RxSwiftCommunity/Action使用介绍
    zsh Shell 增加自动补全、语法高亮
  • 原文地址:https://www.cnblogs.com/kaile/p/10869680.html
Copyright © 2011-2022 走看看