I've a timestamp which print date and time(24 hours format)
String timeStamp = new SimpleDateFormat("ddMMMyyyyHHmm").format(Calendar.getInstance().getTime());
When I print timeStamp the output is
27Feb20180051
but I want something like this
27Feb20180051EST
Any idea how to proceed?