아래와 같은 메소드를 쓰면 UTC로 받은 날짜 String을 yyyy-MM-dd HH:mm:ss 로 변환할수 있다. private String convertUTC(String dtString){ String dtString = "2019-05-02T02:12:42"; SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss"); transFormat.setTimeZone(TimeZone.getTimeZone("UTC")); Date dt = null; try { dt = transFormat.parse(dtString); } catch (ParseException e) { e.printStackTrace(); } SimpleDa..