I have this start datetime: "20201023T200457Z" (it seem to be UTC0000) how can I convert/generate it with this "yyyyMMdd HH:mm:ss" pattern in local time on a mobile?
I get this result: Fri Oct 23 20:04:57 GMT+02:00 2020 with this code:
SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd'T'HHmmss'Z'", Locale.getDefault());
Date startGMTInput = df.parse(start);
Log.e(TAG, "start: " + startGMTInput.toString());// -> Fri Oct 23 20:04:57 GMT+02:00 2020
But my target is to get: 2020-10-23 22:04:57 //because I'm in GMT+2 timezone
Set your timezone to GMT+2 before any date operations.