摘要: 在项目中,一般会将文件临时保存到缓存目录 当时使用 File.createTempFile("tmp", ext, (File) request.getServletContext().getAttribute(ServletContext.TEMPDIR)) 创建临时文件时,项目一直运行正常,然而 阅读全文
posted @ 2020-04-26 08:57 那些年的代码 阅读(1030) 评论(0) 推荐(0) 编辑
摘要: public class ListUtil { /** * 获取list中存放的最后一个元素 * @param list * @param <T> * @return */ public static <T> T getLastElement(List<T> list) { return list. 阅读全文
posted @ 2020-04-26 08:49 那些年的代码 阅读(24724) 评论(0) 推荐(1) 编辑
摘要: Date today = new Date();//获取今天的日期 Calendar c = Calendar.getInstance(); c.setTime(today); c.add(Calendar.DAY_OF_MONTH, 1); Date tomorrow = c.getTime(); 阅读全文
posted @ 2020-04-26 08:39 那些年的代码 阅读(16320) 评论(0) 推荐(3) 编辑
摘要: 1、获取当前时间戳两种方法: System.currentTimeMillis(); #1536764057392 微秒 new Date().getTime(); #1536764057392 微秒2、时间戳转化为yyyyMMdd格式时间SimpleDateFormat df = new Simp 阅读全文
posted @ 2020-04-26 08:35 那些年的代码 阅读(3992) 评论(0) 推荐(0) 编辑
摘要: @Test public void getDay() { String day = "2018-03-19"; Calendar c = Calendar.getInstance(); Date date = null; try { date = new SimpleDateFormat("yy-M 阅读全文
posted @ 2020-04-26 08:34 那些年的代码 阅读(3787) 评论(0) 推荐(0) 编辑