I am developing a J2ME GPS tracking software. I am testing it on LG Touch Screen and i get the wrong timestamp. it's 10 years and 5 days different than the current date(now it show 2000 not 2010). I have done some search and see some people say there's some bug in LG GPS timestamp.

Can anyone give me some advice on the work around for this? Advice and suggestion are much appreciated

Thanks

link|improve this question
feedback

1 Answer

Time = Unix timestamp format. I added 64800 second to the time so it would be converted to Mountain Standard Time.

*timestamp
24 * 60 * 60

.getTime()//milliseconds
24 * 60 * 60 * 1000

private DateField dateField1;
///////////////////////

dateField1= new DateField("Date:", DateField.DATE);
f.append(dateField1);

Date d = new Date();
dateField1.setDate(d);

String TimeSeg = String.valueOf(((dateField1.getDate().getTime()/1000)+64800));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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