Advertisement
Guest User

Client

a guest
Jun 27th, 2011
946
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.53 KB | None | 0 0
  1. import java.net.*;
  2. import java.io.*;
  3.  
  4. public class FileClient {
  5.     static Socket clientSock;
  6.     static int fileSize;
  7.     static final int MAXTHREAD = 3;
  8.     static DownloadThread[] dlThread;
  9.     public static void main(String[] args) {
  10.         if(!init()) return;
  11.         if(!getFileSize()) return;
  12.         if(!initThread()) return;
  13.     }
  14.  
  15.     public static boolean init() {
  16.         try {
  17.             clientSock = new Socket("127.0.0.1", 13267);
  18.         } catch (IOException e) {
  19.             System.out.println(e.getLocalizedMessage());
  20.             return false;
  21.         }
  22.         dlThread = new DownloadThread[MAXTHREAD];
  23.         System.out.println("Connecting...");
  24.         return true;
  25.     }
  26.    
  27.     public static boolean getFileSize(){
  28.         try {
  29.             BufferedReader in = new BufferedReader(new InputStreamReader(clientSock.getInputStream()));
  30.             String line =in.readLine();
  31.             fileSize = Integer.parseInt(line);
  32.         } catch (IOException e) {
  33.             System.out.println(e.getLocalizedMessage());
  34.             disconnected();
  35.             return false;
  36.         }
  37.         return true;
  38.     }
  39.    
  40.     public static boolean initThread()
  41.     {
  42.         int start = 0;
  43.         int end = 0;
  44.         for (int i = 0; i < dlThread.length; i++) {
  45.             if(i==0)  { start = 1; end = (fileSize/MAXTHREAD); }
  46.             else {start = end + 1; end = end + (fileSize/MAXTHREAD);}      
  47.             try {
  48.                 dlThread[i] = new DownloadThread(new Socket("127.0.0.1", 13267), i, start, end);
  49.             } catch (IOException e) {
  50.                 System.out.println(e.getLocalizedMessage());
  51.                 disconnected();
  52.                 return false;
  53.             }
  54.             new Thread(dlThread[i]).start();
  55.         }
  56.         return true;
  57.     }
  58.  
  59.     public static void disconnected() {
  60.         try {
  61.             clientSock.close();
  62.         } catch (IOException e) {
  63.             e.printStackTrace();
  64.         }
  65.     }
  66. }
  67.  
  68. class DownloadThread implements Runnable {
  69.     private int BufferSize;
  70.     private byte[] byteArr;
  71.     private Socket client;
  72.     private int id;
  73.     private int start;
  74.     private int end;
  75.     private OutputStream out;
  76.     private InputStream in;
  77.     private FileOutputStream fos;
  78.     private BufferedOutputStream bos;
  79.     // Constructor
  80.     DownloadThread(Socket client,int id,int start,int end) {
  81.         this.client = client;
  82.         this.id = id;
  83.         this.start = start;
  84.         this.end = end;
  85.         this.BufferSize = (start + end)-1;
  86.     }
  87.  
  88.     public boolean init() {
  89.         try {
  90.             out = client.getOutputStream();
  91.             in = client.getInputStream();
  92.             byteArr = new byte[BufferSize];
  93.             fos = new FileOutputStream("buffer.p"+id);
  94.             bos = new BufferedOutputStream(fos);
  95.         } catch (IOException e) {
  96.             System.out.println(e.getLocalizedMessage());
  97.             disconnected();
  98.             return false;
  99.         }
  100.         return true;
  101.     }
  102.    
  103.     public void disconnected() {
  104.         try {
  105.             client.close();
  106.         } catch (IOException e) {
  107.             e.printStackTrace();
  108.         }
  109.     }
  110.    
  111.     public boolean sendFileRequest() {
  112.         String msg = start + " " + end + "\n";
  113.        
  114.         try {
  115.             out.write(msg.getBytes());
  116.         } catch (IOException e) {
  117.             System.out.println(e.getLocalizedMessage());
  118.             disconnected();
  119.             return false;
  120.         }
  121.         return true;
  122.     }
  123.    
  124.     public boolean receiveFile() {
  125.         int current = 0;
  126.         try {
  127.             int bytesRead = in.read(byteArr,0,byteArr.length);
  128.             System.out.println("Receive file from : " + client);
  129.             current = bytesRead;
  130.             do {
  131.                  bytesRead =
  132.                  in.read(byteArr, current, (byteArr.length-current));
  133.                  if(bytesRead > 0) current += bytesRead;
  134.             } while(bytesRead > 0);
  135.             in.close();
  136.             bos.write(byteArr, 0 , current);
  137.             bos.flush();
  138.             bos.close();
  139.         } catch (IOException e) {
  140.             System.out.println(e.getLocalizedMessage());
  141.             disconnected();
  142.             return false;
  143.         }
  144.         return true;
  145.        
  146.     }
  147.    
  148.     public void run() {
  149.         init();
  150.         sendFileRequest();
  151.         receiveFile();
  152.         disconnected();
  153.     }
  154.    
  155. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement