SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
yyyy-MM-dd hh:mm:ss中只有MM(表示月)是大写,其他都是小写,否则会报Illegal pattern character ‘Y‘。
时间: 2024-10-11 09:24:37
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
yyyy-MM-dd hh:mm:ss中只有MM(表示月)是大写,其他都是小写,否则会报Illegal pattern character ‘Y‘。