Generic Date Parser in Java

I wrote this function because I was working on an application that stored a lot of dates as text, and they were a mixture of American (MM/dd/yyyy) and New Zealand formats (dd/MM/yyy). Sometimes I knew what the format was, and other times I didn’t, so the method needed […]

Output Data to CSV

This is a class I have been using for many years to create csv files. I like it because it is a simple class that handles both generic lists and DataTables, everything I have needed so far. This class could be extended in many ways, but after all […]