import java.net.* ; import java.io.* ; import java.util.* ; public class ServeurExemple4 { public static void main(String [] args) { ServerSocket srv ; int port = 5555 ; try { srv = new ServerSocket(port) ; System.out.println("Serveur Ok") ; while ( true ) { Socket connexion = srv.accept() ; OutputStream os = connexion.getOutputStream() ; DataOutputStream oos = new DataOutputStream(os) ; GregorianCalendar gc = new GregorianCalendar() ; oos.writeInt((int) gc.get(Calendar.HOUR)) ; oos.writeInt((int) gc.get(Calendar.MINUTE)) ; oos.writeInt((int) gc.get(Calendar.SECOND)) ; oos.writeInt((int) gc.get(Calendar.MILLISECOND)) ; connexion.close() ; } } catch(IOException e) { } } }