Advertisement
daniel199410

Utilización de la Clase Date

Mar 25th, 2013
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. public class NewMain {
  2.     public static void main(String[] args) {
  3.         Date f1=new Date();
  4.         System.out.println("Hoy es: "+f1.getDias()[f1.getDiaSemana()-1]+" "+f1.getDia()+" "+f1.getMeses()[f1.getMes()]+" del "+f1.getAño()+" "+f1.getHora()+":"+f1.getMinuto()+":"+f1.getSegundo());
  5.     }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement