| Author |
convert time to double
|
Pramod P Deore
Ranch Hand
Joined: Jul 15, 2008
Posts: 629
|
|
Hi all I want to convert time to double as if suppose now time is 11hr and 40min . then I want to convert this into double as 11.40 how to do this?
|
Life is easy because we write the source code.....
|
 |
Pramod P Deore
Ranch Hand
Joined: Jul 15, 2008
Posts: 629
|
|
|
Is it okay? any better solution?
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12907
|
|
|
That would work, but I wonder why you would want to do that.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
11.40 isn't an accurate representation of 11:40. You'd need to divide the minutes by 60, not 100, giving 11.66666666.... If you only need it for displaying use SimpleDateFormat instead.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: convert time to double
|
|
|