Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (3)
Multithreading in java
no vote
The first program is a simple illustration of multithreading in java. The program has three threads A, B and C each of which prints the values from 1 to 5. Each run of the program gives a different ordering of output based on the switching of control between threads. The second program illustrates the use of yield, stop and sleep methods. The third program illustrates the use of synchronized keyword which is used to synchronize threads
deepthi461947
2016-08-23
0
1
Chat program using TCP
no vote
This is a chat program using TCP. It is done using Java socket programming. The client and server connected over a network can perform chat using this program
deepthi461947
2016-08-23
1
1
Chat program using UDP
no vote
This is a chat program using UDP. It is done using Java socket programming. The client and server connected over a network can perform chat using this program. UDP is a connectionless protocol. It sends data as datagram packets. The class that supports UDP socket is DatagramSocket which is in the java.net package
deepthi461947
2016-08-23
1
1
No more~