** UTC 날짜 파싱하는 방법 String dtString = "2017-11-30T05:11:19"; String resultString = convertUTC(dtString); private String convertUTC(String dtString){ try { /* convert to UTC Format */ SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss"); transFormat.setTimeZone(TimeZone.getTimeZone("UTC")); Date dt = transFormat.parse(dtString); SimpleDateFormat dateFormatter = new SimpleDat..