我正在尝试使用 4-SEP-2018 获得这个日期 09/03/18 6:30:00 PM,但我得到的是 12/364/17 6:30:00 PM,这是我尝试过的。
public class StockBuySell
{
static String DATE_FORMAT_UI = "DD-MMM-YYYY";
public static void main(String args[]) throws Exception {
DateFormat outputFormat = new SimpleDateFormat("MM/DD/YY h:mm:ss a");
outputFormat.setTimeZone(TimeZone.getTimeZone("GMT"));
DateFormat inputFormat = new SimpleDateFormat(DATE_FORMAT_UI);
String inputText = "4-SEP-2018";
Date date = inputFormat.parse(inputText);
String outputText = outputFormat.format(date);
System.out.println(outputText);
}
}
相关分类