If-Modified-Since Date Format

前端 未结 2 1247
醉梦人生
醉梦人生 2020-12-17 20:24

I am writing a server and I would like to check for \"If-Modified-Since: \" header.
Since there are so many date methods, which methods should I consider to check, like

2条回答
  •  离开以前
    2020-12-17 20:37

    As you already have the Date object, you can use:

    long timeInMillis = ifModifiedSince.getTime();
    

提交回复
热议问题