Skip to content

Tag: calendar

Java: Order a list of Objects based on Calendar date?

I have a list of Java Objects that all contain the following field: I want to order the list of objects based on the above field , the object with date field most recent first. What is the best way to do so? Answer You can use Comparator.comparing, suppose you have List<Entity> then you can do this way

Java Calendar not giving end of hour

Based on Epoch seconds, I convert it to the start of hour and end of hour. long epochSeconds = 1589374800L; Instant instant = Instant.ofEpochSecond(epochSeconds); Calendar now = Calendar….

Send invites with google calendar API

I have a Java Spring API where I want to integrate Google Calendar. The task: Basically creating an event for two attendees (users) and send them an invite with the option to accept/decline (standard GCalendar invite) I tried this example here: https://developers.google.com/google-apps/calendar/quickstart/jav…

How to format date/time string? (Java)

Hi can anyone help please? I am trying to format a date and time string. Currently it looks like this “20160112T110000Z” and I need it to be “2016-01-12T11:00:00Z” The string without the special characters are returned from a 3rd party recurrence library. I need to convert it to have t…