要將Java字符串轉換為時間戳,可以使用SimpleDateFormat類來解析字符串并將其轉換為Date對象,然后使用getTime()方法獲取時間戳。
以下是一個示例代碼:
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) {
String dateString = "2021-09-15 10:30:00";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
try {
Date date = sdf.parse(dateString);
long timestamp = date.getTime();
System.out.println("Timestamp: " + timestamp);
} catch (Exception e) {
System.out.println("Error occurred: " + e.getMessage());
}
}
}
在上面的示例中,我們首先創建一個SimpleDateFormat對象,并指定日期格式。然后使用parse()方法將字符串轉換為Date對象,最后使用getTime()方法獲取時間戳。