SimpleDateFormat是一个具体的类,用于以对语言环境敏感的方式来格式化和解析日期。SimpleDateFormat允许您从选择任何用户定义的日期时间格式模式开始。
SimpleDateFormat类具有一些其他方法,特别是parse(),该方法尝试根据存储在给定SimpleDateFormat对象中的格式来解析字符串。
import java.text.SimpleDateFormat; import java.util.Date; public class DateString { public static void main(String args[]) throws Exception{ String date = "21-9-2017"; SimpleDateFormat sdt = new SimpleDateFormat("dd-MM-YYYY"); Date result = sdt.parse(date); System.out.println(result); } }
输出结果
Sun Jan 01 00:00:00 IST 2017