java获取年月日时分秒
时间: 2023-03-31 22:01:46 浏览: 142
可以使用Java中的Date类和SimpleDateFormat类来获取当前时间的年月日时分秒。具体代码如下:
```
import java.util.Date;
import java.text.SimpleDateFormat;
public class Main {
public static void main(String[] args) {
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String currentTime = sdf.format(date);
System.out.println("当前时间为:" + currentTime);
}
}
```
运行结果如下:
```
当前时间为:2022-01-01 12:00:00
```
其中,SimpleDateFormat类中的"yyyy-MM-dd HH:mm:ss"表示时间格式,具体含义如下:
- yyyy:年份,如2022
- MM:月份,如01
- dd:日期,如01
- HH:小时,24小时制,如12
- mm:分钟,如00
- ss:秒钟,如00
通过修改时间格式,可以获取不同格式的时间信息。
相关问题
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`包中的类来替代。
阅读全文