java中年月日时分秒转成时间戳
时间: 2024-02-01 07:08:29 浏览: 170
要将Java中的年月日时分秒转换为时间戳,可以按照以下步骤进行操作:
1. 首先,将年月日时分秒转换为Date对象。可以使用SimpleDateFormat类中的parse()方法将字符串转换为Date对象。
2. 然后,将Date对象转换为时间戳。可以使用Date对象的getTime()方法获取时间戳,该方法返回自1970年1月1日00:00:00 GMT以来的毫秒数。
下面是一个示例代码,演示如何将Java中的年月日时分秒转换为时间戳:
```
import java.text.SimpleDateFormat;
import java.util.Date;
public class TimeStampExample {
public static void main(String[] args) throws Exception {
String dateString = "2021-10-01 12:00:00";
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
Date date = format.parse(dateString);
long timestamp = date.getTime();
System.out.println("时间戳:" + timestamp);
}
}
```
相关问题
Java中时间戳转换成时分秒?
可以使用Java中的Date类和SimpleDateFormat类来将时间戳转换成时分秒。下面是一个示例代码:
```java
long timestamp = System.currentTimeMillis(); // 时间戳,单位毫秒
Date date = new Date(timestamp);
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
String time = sdf.format(date);
System.out.println(time);
```
其中,SimpleDateFormat类的构造函数中的参数"HH:mm:ss"表示将时间格式化成时分秒的形式。最终输出的结果就是当前时间的时分秒。
java如何将时间戳转换成时分秒
以下是Java将时间戳转换成时分秒的方法:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class TimestampToString {
public static void main(String[] args) {
long timestamp = 1630502400000L; // 时间戳,单位为毫秒
Date date = new Date(timestamp);
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss"); // 设置时间格式
String time = sdf.format(date);
System.out.println(time); // 输出:00:00:00
}
}
```
其中,`timestamp`为时间戳,单位为毫秒,`date`为将时间戳转换成的日期格式,`sdf`为设置时间格式,`time`为将日期格式转换成的字符串格式。
阅读全文