-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUDPClient.java
More file actions
80 lines (51 loc) · 2.05 KB
/
UDPClient.java
File metadata and controls
80 lines (51 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package SocketProgram;
import java.io.*;
import java.net.*;
import java.util.Scanner;
class UDPClient
{
public UDPClient() {
System.out.println("UDP client started");
Scanner scanner = new Scanner(System.in);
try(DatagramSocket clientSocket = new DatagramSocket())
{
InetAddress IPAddress = InetAddress.getByName("localhost");
while (true) {
byte[] sendData = new byte[1024];
byte[] receiveData = new byte[1024];
System.out.println("Waiting for Client Input:");
String sentence = scanner.nextLine();
if("quit".equalsIgnoreCase(sentence)){
break;
}
// to send data
sendData = sentence.getBytes();
DatagramPacket sendPacket = new DatagramPacket(sendData, sendData.length, IPAddress, 9003);
clientSocket.send(sendPacket);
//to receive response
DatagramPacket receivePacket = new DatagramPacket(receiveData, receiveData.length);
clientSocket.receive(receivePacket);
String modifiedSentence = new String(receivePacket.getData());
System.out.println("FROM SERVER: \n" + modifiedSentence);
//clientSocket.close();
//Get method added
}
}catch (SocketTimeoutException ex) {
System.out.println("Timeout error: " + ex.getMessage());
ex.printStackTrace();
} catch (IOException ex) {
System.out.println("Client error: " + ex.getMessage());
ex.printStackTrace();
} finally{
//if(clientSocket != null){
//clientSocket.close();
if(scanner != null)
scanner.close();
}
System.out.println("UDP client is terminating");
}
public static void main(String args[]) throws IOException
{
new UDPClient();
}
}