I have a mobile application where I capture a date/time and send it as miliseconds to a servlet. -For example I capture 12:55 AM in my cellphone and send it to my server-
So, I construct the date from the sent miliseconds and print it with SimpleDateFormat but the time is diferent, it prints 8:55 AM. I know that the problem is because I use 2 diferent timezones, my question is: how can I show that time without apply any timezone to show the same time?
Thanks in advance