我正在解析facebook领域"生日"这应该使用" date"来解析。作为它的数据类型。我使用以下方法
String t = "02/22/2016";
SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");
Date test = dateFormat.parse(t);
System.out.println(test);
上述代码的输出为:
Mon Feb 22 00:00:00 IST 2016 - MM/dd/yyy
但我希望输出只是日期,即02/22/2016
而不是上面的输出格式。