0

実際、次のコードのような私の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

4

2 に答える 2

1
java.text.SimpleDateFormat sourceFormat = new SimpleDateFormat("z");

java.text.SimpleDateFormat gmtFormat = new SimpleDateFormat("'GMT('ZZZ')' zzzz");

java.util.Date date1 = sourceFormat.parse("IST");

TimeZone gmtTime = TimeZone.getTimeZone("IST");

gmtFormat.setTimeZone(gmtTime);

//System.out.println("Source date: " + date1);

System.out.println("   "+ gmtFormat.format(date1));
于 2012-11-08T09:57:57.390 に答える
1

私の意見ではずっときれいです。

        TimeZone gmtTime = TimeZone.getTimeZone("IST");
        long gmtOffset = gmtTime.getOffset(new Date().getTime())/ TimeUnit.HOURS.toMillis(1);
于 2017-12-19T14:54:39.963 に答える