I am having a problem: Trying to use SimpleDateFormat with user input...
public static void main(String[] args) { try { SimpleDateFormat sdf = new SimpleDateForm
You should use small y - MM/dd/yyyy.
This link should be your friend when dealing with date format problems.
The new SimpleDateFormat("MM/dd/YYYY",Locale.US); must be new SimpleDateFormat("MM/dd/yyyy",Locale.US);
new SimpleDateFormat("MM/dd/YYYY",Locale.US);
new SimpleDateFormat("MM/dd/yyyy",Locale.US);
YYYY
yyyy