Boa Tarde pessoal
Estou querendo pegar a data inicial de algum tipo data, fiz isso:
SimpleDateFormat formater = new SimpleDateFormat("dd/MM/yyyy hh:mm:ss");
Calendar c = new GregorianCalendar();
c.set(0, 0, 0, 0, 0, 0);
System.out.println(formater.format(c.getTime()));
E me retornou 31/12/0002 12:00:00 isso ta certo?
Eu esperava que retornasse 01/01/1900 00:00:00 ou alguma coisa assim.
O que eu estou fazendo errado?