UDPServer.java 1.22 KB
Newer Older
1
import java.net.*;
Gabriele Civitarese's avatar
Gabriele Civitarese committed
2 3 4 5 6 7 8

class UDPServer { 
	public static void main(String args[]) throws Exception { 
		/* Inizializza la datagram socket specificando la porta di ascolto */

		DatagramSocket serverSocket = new DatagramSocket(9876); 

9 10
		byte[] receiveData; 
		byte[] sendData;
Gabriele Civitarese's avatar
Gabriele Civitarese committed
11 12 13 14

		while(true) 
		{ 

15 16
			receiveData = new byte[1024];

Gabriele Civitarese's avatar
Gabriele Civitarese committed
17 18 19 20 21 22 23
			/* Prepara la struttura dati usata per contenere il pacchetto in ricezione */
			DatagramPacket receivePacket = 
				new DatagramPacket(receiveData, receiveData.length);

			/* Riceve un pacchetto da un client */
			serverSocket.receive(receivePacket); 

24
			String sentence = new String(receivePacket.getData(), 0, receivePacket.getLength());
Gabriele Civitarese's avatar
Gabriele Civitarese committed
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44

			/* Ottiene dal pacchetto informazioni sul mittente */
			InetAddress IPAddress = receivePacket.getAddress(); 
			int port = receivePacket.getPort(); 

			String capitalizedSentence = sentence.toUpperCase(); 

			sendData = capitalizedSentence.getBytes(); 

			/* Prepara il pacchetto da spedire specificando
			 * contenuto, indirizzo e porta del destinatario */
			DatagramPacket sendPacket = 
				new DatagramPacket(sendData, sendData.length, IPAddress, 
						port); 

			/* Invia il pacchetto attraverso la socket */
			serverSocket.send(sendPacket); 
		} 
	} 
}