Skip to content

Instantly share code, notes, and snippets.

View jitunayak's full-sized avatar
🏠
Working from home

Jitu Nayak jitunayak

🏠
Working from home
View GitHub Profile
@jitunayak
jitunayak / SimpleSocket.java
Created August 27, 2020 19:02 — forked from huscael/SimpleSocket.java
[Java Socket] java socket demo #java #socket
class ServerDemo {
public void start() throws IOException{
ServerSocket ss = new ServerSocket(5678);
ss.bind(local);
while (true) {
Socket socket = ss.accept();
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.