getDateStr method

String getDateStr()

日期时间格式转换

Implementation

String getDateStr() {
  String temp = getDateTimeStr();
  if (temp.length > 10) return temp.substring(0, 10);
  return temp;
}