Package br.com.humberto.jdbc

Source Code of br.com.humberto.jdbc.jdbc

package br.com.humberto.jdbc;

import java.sql.SQLException;
import java.text.SimpleDateFormat;
import java.util.List;

import br.com.humberto.jdb.modelo.Contato;
import br.com.humberto.jdb.modelo.ContatoDao;

public class jdbc {

  public static void main(String[] args) throws SQLException {

    ContatoDao c = new ContatoDao();

    List<Contato> contatos = c.getLista();

    for (Contato contato : contatos) {
      SimpleDateFormat sp = new SimpleDateFormat("dd/MM/yyyy");

      System.out
          .println(sp.format(contato.getDataNascimento().getTime()));
    }

  }

}
TOP

Related Classes of br.com.humberto.jdbc.jdbc

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.