I want to create a parser program. Every two characters in string will cut into a unit of time, for example: "150901184610801" need to be converted to displayed as "Tue Sep 01 18:46 CST 2015".
I know my question is somewhat complex, so I would like to be divided into different blocks sequentially solve the problem.
The first problem is:
How to use JAVA to format string follow a rule : each two word element cut into a variable, so I can manipulate variables such as yy (15), mm (09), dd (01), hh (18), ss (46).
Thanks again for any suggest.