实际上在我的java程序中就像下面的代码......
String date1=null;
String formate="IST";
SimpleDateFormat sourceFormat = new SimpleDateFormat("z");
SimpleDateFormat gmtFormat = new SimpleDateFormat("'GMT('Z')'");
date1 = gmtFormat.format(sourceFormat.parse(formate));
System.out.println(date1);//output GMT(+0530)
听说它给出了正确的值,但时区可能会改变PST---- GMT(-0800)
。
但我的代码总是只显示GMT(+0530)
请帮我将时区转换ACT,,PST,IST.....etc
为GMT(+11:00),GMT(-08:00),GMT(+0530).......etc