一、什么是时间戳?
时间戳是指格林威治标准时间1970年1月1日0时0分0秒到某个时间点的总秒数,它是一种方便记录和计算时间的方式。我们可以将一个具体的日期和时间转化为时间戳,也可以将一个时间戳转化为具体的日期和时间。
二、Java中如何将字符串转化为时间戳?
Java中可以使用SimpleDateFormat类将一个字符串按照指定格式转化为时间对象,然后调用getTime()方法将时间对象转化为时间戳。
import java.text.SimpleDateFormat; import java.util.Date; public class StringToTimestamp { public static void main(String[] args) throws Exception { String strTime = "2021-01-01 12:30:00"; SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = sdf.parse(strTime); System.out.println("字符串转化为时间:" + date); long timestamp = date.getTime(); System.out.println("时间转化为时间戳:" + timestamp); } }
上面的代码设置了一个字符串时间strTime,将其按照"yyyy-MM-dd HH:mm:ss"的格式转化为一个时间对象date,并打印输出。然后通过调用date.getTime()方法将时间对象转化为时间戳timestamp,并将其打印输出。
三、时间戳转化为具体日期和时间
Java中可以使用SimpleDateFormat类将时间戳转化为具体的日期和时间。
import java.text.SimpleDateFormat; import java.util.Date; public class TimestampToString { public static void main(String[] args) throws Exception { long timestamp = 1609452600000L; SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = new Date(timestamp); String strTime = sdf.format(date); System.out.println("时间戳转化为字符串:" + strTime); } }
上面的代码设置了一个时间戳timestamp,并将其转化为一个时间对象date,然后按照"yyyy-MM-dd HH:mm:ss"的格式将时间对象转化为字符串strTime,并将其打印输出。
四、注意事项
在将字符串转化为时间戳时,可能会遇到ParseException异常,需使用try-catch语句进行处理。
在时间戳转化为字符串时,需将时间戳设置为long类型,并在后面加上L,否则会被认为是int类型,导致溢出。
在使用SimpleDateFormat类时,.dateFormat和.setTimeZone()方法可用于设置时间格式和时区。
以上就是Java字符串转时间戳的详细介绍。