This is just one of the example programs I tried out that I really liked. It is a simple echo server. It receives a message from a client, then sends that message back. Here is the code: package simpleserver; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.ServerSocket; import java.net.Socket; import java.io.PrintWriter; /** * * @author … Continue reading "So I started learning Java at the Beginning of this Year…"
Read More