Skip to content

Instantly share code, notes, and snippets.

View Chethanbhat04's full-sized avatar
😶‍🌫️
Learning

Chethan_Bhat Chethanbhat04

😶‍🌫️
Learning
View GitHub Profile
@Anass-ABEA
Anass-ABEA / Client.java
Last active April 14, 2024 21:58
Java Sockets #2 : Simplified Client/Server Application - Multiple connections
package net.sockets.simplified;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.Socket;
import java.util.Scanner;
public class Client {
private Socket socket;