I often wonder why this life must be so difficult, I don’t quite understand it at times, I mean we’re here right? So that must mean something , but I’m not sure I understand what that something is? If that makes sense. I wish I had a clue what to do about it. I mean, come on, there’s got to be a way to get through this life without us constantly going to war with each other. Whatever the problem is in life, we have got to find out a way to get past it. It’s got to be made manifest in some shape or form. I do not understand why this life has to be the way it is, it feels so different than anything else in this universe, at least to me it does. Maybe I’m not making much sense, but I do know this. If we don’t grasp life and understand it, we will be left with nothing. Do we want to be left with nothing? I’m not sure we do. If we are left with nothing, what’s the purpose of this life? I’n not sure I can justify an answer for that. It would be nice to be able to figure out something in th...
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