上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 68 下一页
摘要: /** * 获取当前日期的下周一到下周日的所有日期集合 * @return */ public static List getNextWeekDateList(){ Calendar cal1 = Calendar.getInstance(); Calendar cal2 =Calendar.get 阅读全文
posted @ 2020-06-28 17:12 yvioo 阅读(2685) 评论(0) 推荐(0) 编辑
摘要: 注: SimpleDateFormat是线程不安全的 public static SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd"); public static SimpleDateFormat format1 = new Simp 阅读全文
posted @ 2020-06-28 16:11 yvioo 阅读(10594) 评论(2) 推荐(0) 编辑
摘要: /** * 获取当前日期所在的周一到周日的所有日期集合 * @return */ public static List<Date> getWeekDateList() { Calendar cal = Calendar.getInstance(); // 设置一个星期的第一天,按中国的习惯一个星期的 阅读全文
posted @ 2020-06-28 15:21 yvioo 阅读(2761) 评论(0) 推荐(0) 编辑
摘要: /** * 获取当前时间所在周的周一和周日的日期时间 * @return */ public static Map<String,String> getWeekDate() { Map<String,String> map = new HashMap(); SimpleDateFormat sdf 阅读全文
posted @ 2020-06-28 15:15 yvioo 阅读(17551) 评论(0) 推荐(1) 编辑
摘要: /** * 获取当前周的周一的日期 * @param date 传入当前日期 * @return */ public static Date getThisWeekMonday(Date date) { Calendar cal = Calendar.getInstance(); cal.setTi 阅读全文
posted @ 2020-06-28 14:43 yvioo 阅读(7335) 评论(0) 推荐(0) 编辑
摘要: 使用了Lombok插件 Result.java package com.utils; import com.jetsum.business.common.constant.Constant; import lombok.Data; import org.apache.commons.lang3.St 阅读全文
posted @ 2020-06-24 14:47 yvioo 阅读(1111) 评论(0) 推荐(0) 编辑
摘要: 支付宝支付,单位为元,精确到小数点后两位,取值范围[0.01,100000000]。 /** * 此方法价格小数点小于两位会自动补全,多余两位会四舍五入保留两位小数点 * @param price 价格 * @return */ public static String getAliPayPrice 阅读全文
posted @ 2020-06-24 10:00 yvioo 阅读(991) 评论(0) 推荐(0) 编辑
摘要: /** * 获取明天的日期字符串 * @return */ public static String tomorrowDateStr(){ Date date=new Date();//取时间 Calendar calendar = Calendar.getInstance(); calendar. 阅读全文
posted @ 2020-06-23 16:12 yvioo 阅读(12077) 评论(2) 推荐(0) 编辑
摘要: IDEA设置代码注释提示,代码提示,鼠标放上面提示方法的注解信息 打开file-->setting-->Editor-->General,将Show quick documentation on mouse move(将信息在鼠标移动到方法上时进行提示) 打勾 (我版本是2018.2的 高版本的不确 阅读全文
posted @ 2020-06-23 15:50 yvioo 阅读(4769) 评论(2) 推荐(1) 编辑
摘要: //distinct使用 public List<String> distinctDutyDate() { String hql="select distinct(dutyDate) from DoctorDuty"; Query query=getSession().createQuery(hql 阅读全文
posted @ 2020-06-23 11:44 yvioo 阅读(959) 评论(0) 推荐(0) 编辑
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 68 下一页