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