Java 对时间的操作

public static Date getdate(String strDate) {
		SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
		try {
		//String 类型转换成时间类型
			return sdf.parse(strDate);
		} catch (ParseException e) {
			e.printStackTrace();
		}
		return null;
	}


你可能感兴趣的:(Java 对时间的操作)