欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

时间戳与日期之间的转换

程序员文章站 2024-01-21 21:27:22
...
/**
 * 时间戳和日期之间的转换
 * @author wyq
 *
 */
public class App {
	public static void main(String[] args) throws ParseException {	
		//日期转换成时间戳	
		SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		Date dateformat = sdf.parse("2019-10-01 05:20:45");
		long time = dateformat.getTime();
		System.out.println(time);
		
		
		//在原来的基础上加8个小时,将时间戳转成日期
		long l1=time+8*3600*1000;
		Date dat=new Date(l1);
		String ft = sdf.format(dat);
		System.out.println(ft);
		
	}
}