The issue is that I want to pass this code that is in Java 8 to Java 7 but I have no idea, I don't want to use a library to be able to pass it, but what would be the equivalent code in Java 7. Any suggestions?
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd");
String fecha = LocalDate.now().format(formatter);