Java北京飞到到纽约的时区时间

SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

Calendar cal=Calendar.getInstance();
cal.set(2000, 11,30,15,45,20);//日历设置为2000年,12月30日,15:45:20
Date start=cal.getTime();//Date获取设置日历的时间
System.out.println("从北京出发的时间为:"+sdf.format(start));//格式化时间


DateFormat d4=DateFormat.getDateTimeInstance(DateFormat.DEFAULT,DateFormat.DEFAULT);

d4.setTimeZone(TimeZone.getTimeZone("America/New_York"));
System.out.println("此时纽约的时间为:"+d4.format(s));
		
		

如果算上飞行时间:

在Calendar 里加入时间

如:飞机飞行用了4小时20分钟

cal.add(Calendar.MINUTE,4*60+20+60);//差1小时时区换成纽约,少一个小时
Date s=cal.getTime();

你可能感兴趣的:(java)