import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;

public class Main {
	public static void main(String[] args) {
		SimpleDateFormat fmt = new SimpleDateFormat("dd MMM yyyy HH:mm:ss", Locale.GERMAN);
		fmt.setLenient(false);
		fmt.setTimeZone(TimeZone.getTimeZone("Europe/Berlin"));
		try {
			Date date = fmt.parse("08 März 2015 02:15:20");
			System.out.println(fmt.format(date));
		} catch (ParseException e) {
			e.printStackTrace();
		}
	}
}