I want to modify LocalDateTime.now() by adding a certain amount of minutes to it. How do I do that?
LocalDateTime.now()
If you are using java 8 then you can still use the same syntax
LocalDateTime fiveMinutesLater = LocalDateTime.now().plusMinutes(5)
1.4m articles
1.4m replys
5 comments
57.0k users