| Author |
integer number too large
|
swapnil paranjape
Ranch Hand
Joined: May 15, 2005
Posts: 125
|
|
Hi Experts,
I was trying a program to convert the miliseconds we get after from date object (Post Jan 1970) to date object again. Here what I was trying and I am getting interger number too large error. I am using long datatype though. Please advice.
This is the out put:
C:\jdk1.5.0_17\bin>javac MillisecondToDate.java
MillisecondToDate.java:5: integer number too large: 1222402191823
long yourmilliseconds = 1222402191823;
^
1 error
|
 |
swapnil paranjape
Ranch Hand
Joined: May 15, 2005
Posts: 125
|
|
Hey
I got this fixed. It shud be Long yourmilliseconds = 1222402191823L;
This is what happens when you are not in touch with programing for 3 years
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12953
|
|
|
This issue doesn't seem to be about the SCJP exam. I will move it to a more appropriate forum for you.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32833
|
|
|
It should probably not be Long but long. And I see you remembered the L after the number.
|
 |
 |
|
|
subject: integer number too large
|
|
|