获取字符串格式日期的年月日以及转换为TimeStamp类型的方法

1、获取字符串格式日期的年月日
String propValue = "2007-12-31";
SimpleDateFormat formatter = new SimpleDateFormat ("yyyy-MM-dd");
Date modifyDate = formatter.parse(propValue);
record.setDocYear(timestamp.getYear()+1900 );
record.setDocMonth(modifyDate.getMonth()+1);
record.setDocDate(modifyDate.getDate());
2、

/**
  * 日期的字符串格式转换为TimeStamp
  * @param timestampStr
  * @param pattern
  * @return
  * @throws ParseException
  */
 public static Timestamp StrToTimestamp(String timestampStr, String pattern)
  throws ParseException {
  java.util.Date date = null;
  SimpleDateFormat format = new SimpleDateFormat(pattern);
  try {
   date = format.parse(timestampStr);
  } catch (ParseException e) {
   throw e;
  }
  return date == null ? null : new Timestamp(date.getTime());
 }

你可能感兴趣的:(Date,String,null)