I think I've pretty well got a hold on Dates now. So, I created a new object in a class and I assigned it a Date property, and I told it to print the Date property. It does, but just like it would normally do in C#, it presents a Date and a Time. But in C#, you can change that by something like this:
Console.WriteLine("myDate = {0}:d", myDate);
And the :d changes it to just a normal Date format without the time. Is there any similar way to do that in Java?