java获取年月日时分秒
时间: 2023-09-14 14:11:45 浏览: 177
你可以使用 Java 中的 `java.time` 包来获取当前的年月日时分秒。示例代码如下:
```java
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
// 获取当前时间
LocalDateTime now = LocalDateTime.now();
// 格式化日期时间
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDateTime = now.format(formatter);
// 输出日期时间
System.out.println(formattedDateTime);
}
}
```
这样就可以获取到当前的年月日时分秒,并且将其格式化为字符串输出。你可以根据需要调整日期时间格式。
相关问题
java获得年月日时分秒形式的当前时间
您可以使用Java中的`java.time`包中的`LocalDateTime`类来获取当前时间,并使用`DateTimeFormatter`类来将时间格式化为年月日时分秒的形式。下面是一个示例代码:
```
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class CurrentDateTimeExample {
public static void main(String[] args) {
LocalDateTime currentDateTime = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDateTime = currentDateTime.format(formatter);
System.out.println("Current Date and Time: " + formattedDateTime);
}
}
```
这个代码会输出当前的年月日时分秒形式的时间,例如:
```
Current Date and Time: 2021-09-12 14:30:45
```
您可以根据需要修改日期时间格式的模式字符串来自定义日期时间格式。
java获得年月日时分秒形式的当前时间,Date类型
您可以使用Java中的`java.util.Date`类来获取当前时间,并使用`SimpleDateFormat`类来将时间格式化为年月日时分秒的形式。下面是一个示例代码:
```
import java.util.Date;
import java.text.SimpleDateFormat;
public class CurrentDateTimeExample {
public static void main(String[] args) {
Date currentDate = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = formatter.format(currentDate);
System.out.println("Current Date and Time: " + formattedDate);
}
}
```
这个代码会输出当前的年月日时分秒形式的时间,例如:
```
Current Date and Time: 2021-09-12 14:30:45
```
请注意,`java.util.Date`类在Java 8及以后版本已经过时,建议使用`java.time`包中的类来替代。
阅读全文