Here you can find the source of getStrTimeByUTC(long utc, String format)
public static String getStrTimeByUTC(long utc, String format)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getStrTimeByUTC(long utc, String format) { return new SimpleDateFormat(format).format(new Date(utc)); }/* w w w . ja va 2 s.c o m*/ }