Skip to content

Instantly share code, notes, and snippets.

View FTExplore's full-sized avatar

FTExplore

View GitHub Profile
@FTExplore
FTExplore / NiochatServer.java
Created September 14, 2017 11:05 — forked from Botffy/NiochatServer.java
simple Java NIO chat server
package niochat;
import java.net.*;
import java.nio.*;
import java.nio.channels.*;
import java.io.IOException;
import java.util.*;
public class NiochatServer implements Runnable {
private final int port;