Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public LocalDate RandomDate() {
- LocalDate startDate = LocalDate.of(1990, 1, 1); //start date
- LocalDate endDate = LocalDate.now(); //end date
- LocalDate newFecha=ThreadLocalRandom.current().longs(startDate, endDate).findAny().getAsLong();
- return newFecha;
- }
Advertisement
Add Comment
Please, Sign In to add comment