Calendar c = Calendar.getInstance(); c.setTime(cur); //设置时间 c.add(Calendar.MINUTE, 1); //日期分钟加1,Calendar.DATE(天),Calendar.HOUR(小时) Date date = c.getTime(); //结果 Calendar cal = Calendar.getInstance();cal.setTime(d1);cal.add(Calendar.MINUTE, 30);Date d…
注: SimpleDateFormat是线程不安全的 public static SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd"); public static SimpleDateFormat format1 = new SimpleDateFormat( "yyyyMMdd HH:mm:ss"); /** * 得到指定日期的一天的的最后时刻23:59:59 * * @param date * @…
转自:https://blog.csdn.net/iteye_8535/article/details/82246006 JAVA时间进行比较和转换,时间加减得到天数 1. 把时间类型的字符串转为DATE import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Text { public static void main(String[] arg…
debug启动的时候需要等半个小时甚至更长时间 突然有一天发现debug启动不起来了, 在debug时,项目一直会出现 Connected to the VM ,address: 其实这不是debug报错,没有启动 其实是一直处于启动中状态,日志刷的很慢 原因,之前存在断点没有取消,造成启动缓慢 解决方案,取消多余断点 点击上方图片左侧两个大红点取消相应的断点 只保留你自己这次需要的断点就好了…