以下是“Java实现的时间戳与date对象相互转换功能示例”的攻略:
1. 使用Date对象实现时间戳与日期字符串的相互转换
1.1 时间戳转日期字符串
import java.text.SimpleDateFormat;
import java.util.Date;
public class TimestampToDateStr {
public static void main(String[] args) {
long timestamp = 1630221763000L; // 时间戳,单位为毫秒
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); // 转换格式
Date date = new Date(timestamp); // 将时间戳转换为日期对象
String dateStr = sdf.format(date); // 将日期对象转换为日期字符串
System.out.println(dateStr); // 输出日期字符串
}
}
运行输出结果为:2021-08-29 14:02:43
1.2 日期字符串转时间戳
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateStrToTimestamp {
public static void main(String[] args) throws ParseException {
String dateStr = "2021-08-29 14:02:43"; // 日期字符串
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); // 转换格式
Date date = sdf.parse(dateStr); // 将日期字符串转换为日期对象
long timestamp = date.getTime(); // 将日期对象转换为时间戳
System.out.println(timestamp); // 输出时间戳
}
}
运行输出结果为:1630221763000
2. 使用Instant对象实现时间戳与Date对象的相互转换
2.1 时间戳转Date对象
import java.time.Instant;
import java.util.Date;
public class TimestampToDate {
public static void main(String[] args) {
long timestamp = 1630221763000L; // 时间戳,单位为毫秒
Instant instant = Instant.ofEpochMilli(timestamp); // 将时间戳转换为Instant对象
Date date = Date.from(instant); // 将Instant对象转换为Date对象
System.out.println(date); // 输出Date对象
}
}
运行输出结果为:Sun Aug 29 14:02:43 CST 2021
2.2 Date对象转时间戳
import java.time.Instant;
import java.util.Date;
public class DateToTimestamp {
public static void main(String[] args) {
Date date = new Date(); // 当前时间
Instant instant = date.toInstant(); // 将Date对象转换为Instant对象
long timestamp = instant.toEpochMilli(); // 将Instant对象转换为时间戳
System.out.println(timestamp); // 输出时间戳
}
}
运行输出结果为当前时间的时间戳。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Java实现的时间戳与date对象相互转换功能示例 - Python技术站