Is this what you are looking for?

TimeZone gmtz = TimeZone.getTimeZone("GMT");
Calendar gmtCalendar = Calendar.getInstance(gmtz);

long gmtTime = gmtCalendar.getTimeInMillis() ;


If the time zone you want is not represented by one of the supported IDs, then
you can create a custom time zone ID
with the following syntax:

GMT[+|-]hh[[:]mm]



Santosh






sandarbh <[EMAIL PROTECTED]> on 05/15/2001 12:57:20 PM

Please respond to A mailing list about Java Server Pages specification and
      reference <[EMAIL PROTECTED]>

To:   [EMAIL PROTECTED]
cc:    (bcc: Santosh Daryani/IT/Aon Consulting)

Subject:  Re: important ..................



this will give me current time in milliseconds. can we try getting this
value for some other time in GMT format

sandarbh
----- Original Message -----
From: "Clayton Nash" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, May 15, 2001 5:19 PM
Subject: Re: important ..................


> just try
> long thetime=System.currentTimeMillis();
>
> Clayton
>
> -----Original Message-----
> From: A mailing list about Java Server Pages specification and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of sandarbh
> Sent: 15 May 2001 13:49
> To: [EMAIL PROTECTED]
> Subject: important ..................
>
>
> Hi all,
> I have a basic simple question to ask.
> I need to know exact difference between two times in milliseconds in a
bean
> which i am callig thru a JSP page. If i use calender class and use compute
> time then it is abstract in nature so i have to blah blah blah........u
know
>
> The other option is -->>>>>>>>>>>>>>
> select sysdate - (select max(logdatetime) from module_log) from dual,  get
> the result and proceed the .. the connection is already there so question
is
> only of creating resultset and blah blah.............
>
> which of these options will take less system resources and why??
>
> Sandarbh
>
>
===========================================================================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
>
===========================================================================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to