Guest User

Untitled

a guest
Jan 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class DateToIso {
  2. /**
  3. * This uses java formatter for the conversion
  4. */
  5. public String toString(Date date) {
  6. return String.format("%tFT%<tT.%<tL", date);
  7. }
  8. }
Add Comment
Please, Sign In to add comment