I would like to know how I can obtain only the time of a TimeStamp like the following:
From here I suppose that if I only get the time, it should give me 20:00 PM (I don't want seconds).
I have also read on the internet that people prefer to use Joda Time over the tools that Java already offers in its jdk.
How could I extract that information?
Using SimpleDateFormat and the appropriate pattern, in your case yyyy-MM-dd'T'HH:mm:ssZ so that with the parse method of DateFormat convert the java.lang.String to java.util.Date and then the appropriate pattern HH :mm (Hour of day (0-23)) or h:mm to (Hour am/pm (1-12) ), to convert the java.util.Date to java.lang.String :
This is the result:
2018-11-20 20:00:00
20:00
8:00 PM