Java 校验时间格式是否为 yyyy-MM-dd HH:mm:ss
时间: 2024-06-13 20:08:12 浏览: 208
java时间格式大全
4星 · 用户满意度95%
可以使用SimpleDateFormat类来校验时间格式是否为yyyy-MM-dd HH:mm:ss。具体实现方法如下所示:
```java
import java.text.ParseException;
import java.text.SimpleDateFormat;
public class Main {
public static void main(String[] args) {
String input = "2021-08-31 12:30:45";
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
try {
format.parse(input);
System.out.println("时间格式正确");
} catch (ParseException e) {
System.out.println("时间格式错误");
}
}
}
```
在上述代码中,我们首先定义了一个字符串类型的时间变量input,然后使用SimpleDateFormat类来定义时间格式为yyyy-MM-dd HH:mm:ss。接着,我们使用try-catch语句块来尝试将input转换为指定格式的时间,如果转换成功,则说明时间格式正确,否则说明时间格式错误。
阅读全文