Android parsing String to Date Zeit mit SimpleDateFormat

Ich habe den String11/08/2013 08:48:10

und ich benutzeSimpleDateFormat("MM/dd/yyyy HH:mm:ss")

und wenn es analysiert, löst es eine Ausnahme aus: ein nicht analysierbares Datum

Was stimmt damit nicht ?

            String result = han.ExecuteUrl("http://"+han.IP+":8015/api/Values/GetLastChange"); 
            Log.d("Dal","result date time "+result); #result is 11/08/2013 08:48:10
            SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");

            Date convertedDate = new Date();
            try
            {

                convertedDate = dateFormat.parse(result);
            }
            catch (ParseException e)
            {
                e.printStackTrace();
            }

Antworten auf die Frage(2)

Ihre Antwort auf die Frage