Here you can find the source of getUTCTimeFromLocalMillis(long localMillis)
Parameter | Description |
---|---|
localTimeMillis | a parameter |
static long getUTCTimeFromLocalMillis(long localMillis)
//package com.java2s; import java.util.Calendar; public class Main { /**//w ww.j av a 2s. c om * Convert a local timestamp into UTC time * * @param localTimeMillis * @return */ static long getUTCTimeFromLocalMillis(long localMillis) { return localMillis + getTimeZoneOffsetInMillis(); } /** * @return the timezone offset of the current device relative to UTC */ static long getTimeZoneOffsetInMillis() { Calendar cal = Calendar.getInstance(); return cal.get(Calendar.ZONE_OFFSET) + cal.get(Calendar.DST_OFFSET); } }