How do you convert 2 dates one in BST(Current date) and the other in GMT so that they can be compared using the calendar date before() and after() methods? I don\'t know if BS
What about:
Calendar calBst = new GregorianCalander(); calBst.setDate(date1); calBst.setTimezone(TimeZone.getTimeZone("BST"); Calendar calGmt = new GregorianCalander(); calGmt.setDate(date2); calGmt.setTimezone(TimeZone.getTimeZone("GMT"); calBst.before(calGmt);