public static String formateGMTTime(String time) {
Date date = new Date(time);
SimpleDateFormat dateformatGMT = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
time = dateformatGMT.format(date);
return time;
}
public static String formateGMTTime(String time) {
Date date = new Date(time);
SimpleDateFormat dateformatGMT = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
time = dateformatGMT.format(date);
return time;
}