最终转换成yyyy-MM-dd HH:mm:ss的datetime格式的
时间: 2024-03-14 20:45:08 浏览: 65
可以使用以下代码来获取当前时间并将其转换为yyyy-MM-dd HH:mm:ss格式的datetime字符串:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class GetCurrentDatetime {
public static void main(String[] args) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String currentDatetime = dateFormat.format(new Date());
System.out.println("Current datetime: " + currentDatetime);
}
}
```
输出结果为:
```
Current datetime: 2022-02-22 11:22:33
```
你可以将格式化后的datetime字符串用于后续的操作。
相关问题
请写一个python脚本目标是将时间戳转换为 yyyy-mm-dd hh:mm:ss 格式,已经将yyyy-mm-dd hh:mm:ss 格式时间转换为时间戳
Python中,你可以使用`datetime`模块来进行日期和时间的操作。如果你已经有了一个时间戳(Unix时间戳),可以使用`datetime.fromtimestamp()`函数将其转换为`datetime`对象,然后使用`strftime()`方法将其格式化为"yyyy-mm-dd HH:mm:ss"。反之,如果你想从字符串格式转换为时间戳,可以用`strptime()`函数先解析,再用`timestamp()`方法获取。
这里是一个示例脚本:
```python
from datetime import datetime
# 转换时间戳为特定格式
def timestamp_to_str(timestamp):
dt = datetime.fromtimestamp(timestamp)
return dt.strftime('%Y-%m-%d %H:%M:%S')
# 从特定格式转换为时间戳
def str_to_timestamp(date_string):
format_str = '%Y-%m-%d %H:%M:%S'
dt = datetime.strptime(date_string, format_str)
return dt.timestamp()
# 示例
timestamp_example = 1689045600 # 假设这是某个时间戳
formatted_date = timestamp_to_str(timestamp_example)
print(f"Time in 'yyyy-mm-dd HH:mm:ss' format: {formatted_date}")
date_string_example = "2023-04-01 12:00:00"
timestamp_from_str = str_to_timestamp(date_string_example)
print(f"Timestamp from the given string: {timestamp_from_str}")
yyyy-MM-dd HH:mm:ss 转 yyyy-mm-dd hh:mm:ss
可以使用Python中的datetime模块来进行时间格式转换,具体代码如下:
```python
from datetime import datetime
old_time = '2022-01-01 12:00:00'
new_time = datetime.strptime(old_time, '%Y-%m-%d %H:%M:%S').strftime('%Y-%m-%d %I:%M:%S %p')
print(new_time)
```
输出结果为:2022-01-01 12:00:00 PM
阅读全文