I am getting following time from service
'Nov 11 2019 7:30 PM'
I know this is US Central Time, I need to get hours between current time and this event time, but i am unable to understand how to convert this date to UTC.
I am using following approach, but this does not seem to be working fine.
public Date ticketJSONDateFormatter(String dateTime){
    SimpleDateFormat simpleDateFormatter
            = new SimpleDateFormat("MMM d yyyy HH:mm a");
    
    Date parsedDate = null;
    try {
        simpleDateFormatter.setTimeZone(TimeZone.getTimeZone("UTC"));
        parsedDate = simpleDateFormatter.parse(dateTime);
    } catch (ParseException e) {
        e.printStackTrace();
    }
    return parsedDate;
}   
This method returns following date
Fri Oct 11 12:30:00 GMT+05:00 2019
Although the expected output may be something like this. My device is at (+5:00 UTC)
Fri Oct 12 12:30:00 GMT+05:00 2019
 
     
     
    