Jump to content

Calypsoli

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Calypsoli

  1. ok here's my solution, i am GMT-5 import java.util.Calendar; Date oldDate = new Date(); Calendar cal = Calendar.getInstance(); cal.setTime(oldDate); cal.add(Calendar.HOUR_OF_DAY, 5); Date date = cal.getTime(); DateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); This worked perfectly for me! :)
  2. public Date getTime ( ) { TimeZone zone = TimeZone.getTimeZone ( "GMT-5" ); Calendar calendar = Calendar.getInstance ( zone ); return calendar.getTime ( ); } Think this would be an idea?
  3. I just realized i need to take the time for this. Pandora's Jar is, for me, the top 1 application in 2006. I wanna say thank you to the brilliant makers of this software. Finally my little brother can explore different music artists and admire the diversity of music itself. (without keeping the same track on repeat) Again, thank you!
  4. So, any solution? I tryed to recompile with your code but i get incorrect format... I switched back to original version but get +5h timestamp on songs.
×
×
  • Create New...