【文件属性】:
文件名称:校园管理系统
文件大小:7KB
文件格式:JSP
更新时间:2021-10-26 09:59:59
java
public static List getOneDayValidTime(String day) {
List timeList = getFutureAllValidMinutes();
List resultList = new ArrayList();
StringBuffer sb = new StringBuffer();
String initDay = day + " ";
for (String time : timeList) {
sb.append(initDay);
sb.append(time);
resultList.add(sb.toString());
sb.delete(0, sb.length());
}
return resultList;
---------------------
本文来自 Anald 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/u010503822/article/details/78108843?utm_source=copy