• 大小: 2.67M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-10-30
  • 语言: 其他
  • 标签: 其他  

资源简介

自行车租赁管理系统.7z

资源截图

代码片段和文件信息

package com.cxbl.common;

import java.text.ParseException;
import java.util.Date;

public class common {
public static Date stringToDate(String str) {

Date rcreate = new Date();
java.text.SimpleDateFormat newstr = new java.text.SimpleDateFormat(
“yyyy-MM-dd HH:mm:ss“);

try {
rcreate = newstr.parse(str);
} catch (ParseException e) {

e.printStackTrace();
}
return rcreate;
}
}

评论

共有 条评论