2

UNIX時間をGMTに変換するのに問題があります。

私は次のコードを持っていますが、その逆の方法を知りたいです。

    public static String GetUnixTime() 
    { 
                 Calendar calendar = Calendar.getInstance(); 
                 long now = calendar.getTimeInMillis(); 

               return Long.toString(now);
    } 
4

2 に答える 2

3

これを試して

Date d = new Date(1308670980000L);
SimpleDateFormat f = new SimpleDateFormat("dd.MM.yyyy,HH:mm");
f.setTimeZone(TimeZone.getTimeZone("GMT"));
String s = f.format(d);
于 2012-10-22T04:58:13.023 に答える
1

long unixTime = unixTime;

java.util.Date GMTTime = new java.util.Date(unixTime);

System.out.println( "GMTTime ::" + GMTTime);

于 2012-10-22T05:12:21.147 に答える