I have a timestamp value "20150616182115452" which is "yyyyMMddHHmmss ", and i wanted to format it to "dd/MM/yyyy hh:mm:ss" .
i have tried
String lastLogon = db.getDataAt(0,"VG_QRSE006_L_LGN_TIMESTAMP") ;
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
Date date = simpleDateFormat.parse(lastLogon);
System.out.println(simpleDateFormat.format(date));
however, i got Unparseable date: "20150616182115452"