Compressed socket : ServerSocket « Network Protocol « Java






Compressed socket

   

import java.io.BufferedReader;
import java.io.FileReader;
import java.net.Socket;
import java.util.zip.GZIPOutputStream;

public class Main {
  public static void main(String[] args) throws Exception {
    Socket sock = new Socket(args[0], Integer.parseInt(args[1]));
    GZIPOutputStream zip = new GZIPOutputStream(sock.getOutputStream());
    String line;
    BufferedReader bis = new BufferedReader(new FileReader(args[2]));
    while (true) {
      line = bis.readLine();
      if (line == null)
        break;
      line = line + "\n";
      zip.write(line.getBytes(), 0, line.length());
    }
    zip.finish();
    zip.close();
    sock.close();
  }
}

   
    
    
  








Related examples in the same category

1.Data server
2.Object server
3.String value based server
4.Get internet address from connected socket client
5.BufferedReader for ServerSocket
6.ServerSocket per Socket
7.Write number to client
8.Read and write with ServerSocket
9.Threaded Server with ServerSocket
10.Start new thread for each client
11.A multithreaded Socket Server
12.Get IP address from NetworkInterface and create server socket
13.Manages asynchonous HTTP GET downloads and demonstrates non-blocking I/O with SocketChannel and Selector
14.A very simple Web server. When it receives a HTTP request it sends the request back as the reply.
15.Print stream server
16.Zip server socket
17.implements a multithreaded server that listens to port 8189 and echoes back all client input.
18.This program implements a simple server that listens to port 8189 and echoes back all client input.