Ir al contenido principal

Entradas

Mostrando entradas de octubre, 2016

Java Fecha Actual

    public static String currentDate () {         Calendar calendar = new GregorianCalendar ();         Formatter dia = new Formatter (). format ( "%02d" , calendar . get ( Calendar . DATE ));         Formatter mes = new Formatter (). format ( "%02d" , calendar . get ( Calendar . MONTH ));         Formatter annio = new Formatter (). format ( "%04d" , calendar . get ( Calendar . YEAR ));         return dia + "/" + mes + "/" + annio ;     }

Flex Layout

<!DOCTYPE html> <html lang= "en" >     <head>         <meta charset= "UTF-8" >         <title> test flex box </title>     </head>     <style>         html, body {             height : 100 % ;             width : 100 % ;             padding : 0 ;             margin : 0 ;         }         body {             display : flex;             flex - direction : column;         }         header {             height : auto ;         }         main {             flex : auto ;             background-color : #ccc ;         }         footer {             height : 25px ;         }     </style> <body>     <header> header </header>     <main> main </main>     <footer> footer </footer> </body> </html>