jwt 生成的token exp 的单位是秒
Posted del88
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jwt 生成的token exp 的单位是秒相关的知识,希望对你有一定的参考价值。
public class Test { public static void main(String[] args) throws UnsupportedEncodingException { DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = null; Date date1 = null; date = new Date(System.currentTimeMillis() + (365 * 24 * 60 * 60 * 1000L)); date1 = new Date(1621329814000L); System.out.println(dateFormat.format(date)); System.out.println(dateFormat.format(date1)); System.out.println(new String(Base64.getDecoder().decode("eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9".getBytes("utf-8")))); } }
以上是关于jwt 生成的token exp 的单位是秒的主要内容,如果未能解决你的问题,请参考以下文章