我正在尝试打印给定日期的一天。我怎么能这样做?
String date = "2015.05.12";
SimpleDateFormat format = new SimpleDateFormat("yyyy.MM.dd");
Date bornDate = format.parse(date);
System.out.println(bornDate.getDay());//this prints "2" instead of "12"
答案 0 :(得分:1)
您可以使用bornDate.getDate()
来获取日期。您将使用日历类,因为不推荐使用日期方法。