java 获取当前时间 年月日 时分秒
时间: 2024-07-10 21:00:41 浏览: 259
可以使用Java提供的Date和SimpleDateFormat类来获取当前时间的年月日时分秒信息。以下是一个示例代码:
```
import java.util.Date;
import java.text.SimpleDateFormat;
public class Main {
public static void main(String[] args) {
// 创建一个Date对象,表示当前时间
Date now = new Date();
// 创建一个SimpleDateFormat对象,指定日期格式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// 使用SimpleDateFormat对象的format方法将Date对象格式化为指定格式的字符串
String dateTimeString = sdf.format(now);
// 输出结果
System.out.println(dateTimeString);
}
}
```
这个示例代码将输出当前时间的年月日时分秒信息,格式为"yyyy-MM-dd HH:mm:ss",例如:2021-11-01 10:30:20。
相关问题
java 获取当前时间年月日时分秒
可以使用Java中的java.util.Date和java.text.SimpleDateFormat类来获取当前时间的年月日时分秒。
以下是一个示例代码:
```java
import java.util.Date;
import java.text.SimpleDateFormat;
public class GetCurrentTime {
public static void main(String[] args) {
// 创建一个Date对象,表示当前时间
Date now = new Date();
// 创建一个SimpleDateFormat对象,用于格式化日期时间
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// 使用SimpleDateFormat对象的format()方法将Date对象格式化为字符串
String currentTime = sdf.format(now);
// 输出当前时间的字符串形式
System.out.println(currentTime);
}
}
```
输出结果类似于:
```
2021-06-18 15:28:30
```
java获取当前时间年月日时分秒毫秒
Java获取当前时间年月日时分秒毫秒可以使用以下代码:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class GetCurrentTime {
public static void main(String[] args) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
String currentTime = sdf.format(new Date());
System.out.println(currentTime);
}
}
```
其中,SimpleDateFormat类可以将Date类型的时间格式化为指定格式的字符串,"yyyy-MM-dd HH:mm:ss.SSS"表示年-月-日 时:分:秒.毫秒。new Date()获取当前时间,sdf.format()方法将时间格式化为字符串,最后输出即可。
阅读全文