import java.util.Date
Date time=new Date();
DateFormat gmt08Formatter=DateFormat.getDateTimeInstance();
TimeZone timezone=TimeZone.getTimeZone("GMT+08:00");
gmt08Formatter.setTimeZone(timezone);
// 获得格式化后的东八区时间
String gmt08DateTime=gmt08Formatter.format(time);
System.out.println(gmt08DateTime);