It’s raining outside right now. Supposed to rain all day long. I don’t know what to think about all of that though. It’s rain, I mean we need it…I understand that. But with rain there is so much more to it than that. We can drown in rain if there’s too much of it can’t we? Yeah, that’s what I was thinking. Rain will always be around. There’s no stopping it. Rain woln’t destroy us, God made sure of that promise. I think something about a rainbow int he sky. So He won’t flood the Earth a second time. Talk about a relief. Rain will continue to fall though. It just woln’t be as dangerous.
For some reason my installation of Java wouldn't let me use SimpleDateFormat to format my dates. So I had to google a different way to do this and found the following works as well. The Date class has a bunch of issues with it to begin with, so this is much cleaner and better as well.
LocalDateTime ldt = LocalDateTime.now();
DateTimeFormatter df = DateTimeFormatter.ofPattern("MM/dd/yyyy", Locale.ENGLISH);
String formattedString = df.format(ldt);
Comments
Post a Comment