Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting the timezone of a android device using this code

TimeZone tz = TimeZone.getDefault();
String current_Time_Zone = (TimeZone.getTimeZone(tz.getID()).getDisplayName(
                false, TimeZone.SHORT))

But it always return me the timezone like "IST" but i want to get the timezone in GMT like this GMT+7:00. Please help me, Thanks.

share|improve this question
It's not the timezone in GMT, It's called the offset from GMT. That may help you find the correct value. – Evert Feb 25 at 13:33
thanks @ Evert for info – Naveen Kumar Feb 25 at 13:35
IST is Different From GMT +05:30 by hours, you could calculate it later too. – Bigflow Feb 25 at 13:36
@Bigflow give me some idea – Naveen Kumar Feb 25 at 13:39
@NaveenKumar If you know the IST, and GMT is always +05:30 hours. Then you always know the GMT too, right? But I guess that from Evert is better solution. (check my answer) – Bigflow Feb 25 at 13:43
show 1 more comment

4 Answers

TimeZone timeZone = TimeZone.getTimeZone("GMT+7:00");

declare it explicitely.

share|improve this answer

TimeZone tz = TimeZone.getDefault();
String gmt1=TimeZone.getTimeZone(tz.getID()).getDisplayName(false,TimeZone.SHORT);
String gmt2=TimeZone.getTimeZone(tz.getID()).getDisplayName(false,TimeZone.LONG); Log.d("Tag","TimeZone : "+gmt1+"\t"+gmt2);

See if this helps :)

share|improve this answer
it return TimeZone : IST – Naveen Kumar Feb 25 at 13:38

This might give you an idea on how to implement it to your liking:

Calendar mCalendar = new GregorianCalendar();  
TimeZone mTimeZone = mCalendar.getTimeZone();  
int mGMTOffset = mTimeZone.getRawOffset();  
System.out.printf("GMT offset is %s hours", TimeUnit.HOURS.convert(mGMTOffset, TimeUnit.MILLISECONDS)); 

(TimeUnit is "java.util.concurrent.TimeUnit")

share|improve this answer
up vote 0 down vote accepted

This code return me GMT offset.

Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT"),
                Locale.getDefault());
        Date currentLocalTime = calendar.getTime();
        DateFormat date = new SimpleDateFormat("Z");
        String localTime = date.format(currentLocalTime);

It return time zone offset like this +0530

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.