Je suis en train de faire un client FTP en JAVA mais il y a certains problèmes qui m'enpéchent d'arriver au but. Alors voici le code du fichiers FTPConnection.java

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
 
import java.io.*;
import java.net.*;
import java.util.*;
 
public class FtpConnection extends Object
{
    /**
     * Si le flag est a true l'on affiche les messages FTP entrant/sortant
     */
    private static boolean PRINT_DEBUG_INFO = false;
 
    /**
     * Le flag défini le type de connection pour les transfers de donnée.
     * 0: Passif (PASV)
     * 1: Actif (PORT)
     */
    private static int CONNECTION_MODE = 0;
 
    /**
     * Le socket avec lequel l'on se connecte
     */
    private Socket connectionSocket = null;
 
    /**
     * Socket spécifique au mode passif.
     */
	private Socket pasvSocket = null;
 
    /**
     * Flux général de sortie
     */
    private PrintStream outputStream = null;
 
    /**
     * Flux général d'entrée
     */
    private BufferedReader inputStream = null;
 
    /**
     * Point de retour pour les resumes de transfer
     */
    private long restartPoint = 0L;
 
    /**
     * Status de la connection
     */
    private boolean loggedIn = false;
 
    /**
     * Signe de terminaison pour les réponses multi-lignes
     */
    public String lineTerm = "\n";
 
    /**
     * Taille du buffer pour les transfers
     */
    private static int BLOCK_SIZE = 4096;
 
 
    /**
     * Après avoir crée un Objet FtpConnection vous devez utiliser les méthodes connect()
     * puis login(). N'oubliez pas à la fin de vous logout() puis disconnect(),
     * question de politesse ;)
     */
    public FtpConnection ()
    {
    	//Constructeur par defaut
    }
 
 
    /**
     * Surcharge pour spécifier le status du mode debug. (true = debug)
     * Ainsi que le mode de connection (1-Passif et 2-Actif)
     * Après avoir crée un Objet FtpConnection vous devez utiliser les méthodes connect()
     * puis login(). N'oubliez pas à la fin de vous logout() puis disconnect(),
     * question de politesse ;)
     */
    public FtpConnection (boolean debugOut,int mode)
    {
    	PRINT_DEBUG_INFO = debugOut;
    	CONNECTION_MODE = mode;
    }
 
 
    /**
     * Affiche les informations de debugging si le flag PRINT_DEBUG_INFO est on.
     */
    private void debugPrint(String message) 
    {
        if (PRINT_DEBUG_INFO) System.err.println(message);
    }
 
 
    /**
     * Se connect au FTP donné sur le port par defaut 21
     */
    public boolean connect(String host)throws UnknownHostException, IOException
    {
        return connect(host, 21);
    }
 
 
    /**
     * Se connect au FTP donné sur le port donné
     */
    public boolean connect(String host, int port)throws UnknownHostException, IOException
    {
        connectionSocket = new Socket(host, port);
        outputStream = new PrintStream(connectionSocket.getOutputStream());
        inputStream = new BufferedReader(new InputStreamReader(connectionSocket.getInputStream()));
 
        if (!isPositiveCompleteResponse(getServerReply())){
            disconnect();
            return false;
        }
 
        return true;
    }
 
 
    /**
     * Se déconnecte de l'host sur lequel on est actuellement connecté
     */
    public void disconnect()
    {
        if (outputStream != null) {
            try {
        		if (loggedIn) { logout(); };
                outputStream.close();
                inputStream.close();
                connectionSocket.close();
            } catch (IOException e) {}
 
            outputStream = null;
            inputStream = null;
            connectionSocket = null;
        }
    }
 
 
    /**
     * On se log sur le ftp avec un login et un password.
     */
    public boolean login(String username, String password)throws IOException
    {
        int response = executeCommand("user " + username);
        if (!isPositiveIntermediateResponse(response)) return false;
        response = executeCommand("pass " + password);
        loggedIn = isPositiveCompleteResponse(response);
        return loggedIn;
    }
 
 
    /**
     * Il faut se logout() avant de se déconnecter, pourquoi ? Parceque !
     */
    public boolean logout()throws IOException
    {
        int response = executeCommand("quit");
        loggedIn = !isPositiveCompleteResponse(response);
        return !loggedIn;
    }
 
 
    /**
     * Command pour changer de répértoire
     */
    public boolean changeDirectory(String directory)throws IOException
    {
        int response = executeCommand("cwd " + directory);
        return isPositiveCompleteResponse(response);
    }
 
 
    /**
     * Commande pour renommer un fichier
     */
    public boolean renameFile(String oldName, String newName)throws IOException
    {
        int response = executeCommand("rnfr " + oldName);
        if (!isPositiveIntermediateResponse(response)) return false;
        response = executeCommand("rnto " + newName);
        return isPositiveCompleteResponse(response);
    }
 
 
    /**
     * Commande pour créer un répértoire
     */
    public boolean makeDirectory(String directory)throws IOException
    {
        int response = executeCommand("mkd " + directory);
        return isPositiveCompleteResponse(response);
    }
 
 
    /**
     * Commande pour détruire un dossier.
     */
    public boolean removeDirectory(String directory)throws IOException
    {
        int response = executeCommand("rmd " + directory);
        return isPositiveCompleteResponse(response);
    }
 
 
    /**
     * Commande pour remonter au dossier parent.
     */
    public boolean parentDirectory()throws IOException
    {
        int response = executeCommand("cdup");
        return isPositiveCompleteResponse(response);
    }
 
 
    /**
     * Commande pour supprimer un fichier.
     */
    public boolean deleteFile(String fileName)throws IOException
    {
        int response = executeCommand("dele " + fileName);
        return isPositiveCompleteResponse(response);
    }
 
 
    /**
     * On récupère le nom du dossier en cours.
     */
    public String getCurrentDirectory()throws IOException
    {
        String response = getExecutionResponse("pwd");
        StringTokenizer strtok = new StringTokenizer(response);
 
        // Get rid of the first token, which is the return code
        if (strtok.countTokens() < 2) return null;
        strtok.nextToken();
        String directoryName = strtok.nextToken();
 
        // Most servers surround the directory name with quotation marks
        int strlen = directoryName.length();
        if (strlen == 0) return null;
        if (directoryName.charAt(0) == '\"') {
            directoryName = directoryName.substring(1);
            strlen--;
        }
        if (directoryName.charAt(strlen - 1) == '\"')
            return directoryName.substring(0, strlen - 1);
        return directoryName;
    }
 
 
    /**
     * On récupère le type de system sur lequel le FTP est en cours.
     * Note: Cette commande retourne parfois des infos "..unix.." alors que le FTP
     * tourne sur un OS win32.
     */
    public String getSystemType()throws IOException
    {
        return excludeCode(getExecutionResponse("syst"));
    }
 
 
    /**
     * Retourne la date de dernière modification d'un fichier
     */
    public long getModificationTime(String fileName)throws IOException
    {
        String response = excludeCode(getExecutionResponse("MDTM " + fileName));
        try {
            return Long.parseLong(response);
        } catch (Exception e) {
            return -1L;
        }
    }
 
 
    /**
     * Retourne la taille d'un fichier (en octet)
     */
    public long getFileSize(String fileName) throws IOException
    {
        String response = excludeCode(getExecutionResponse("size " + fileName));
        try {
            return Long.parseLong(response);
        } catch (Exception e) {
            return -1L;
        }
    }
 
    /**
     * Command pour télécharger un fichier.
     */
    public boolean downloadFile(String fileName) throws IOException
    {
        return readDataToFile("retr " + fileName, fileName);
    }
 
 
    /**
     * Télécharger un fichier en précisant son futur emplacement sur le disk.
     */
    public boolean downloadFile(String serverPath, String localPath)throws IOException
    {
        return readDataToFile("retr " + serverPath, localPath);
    }
 
 
    /**
     * Commande pour uploader un fichier.
     */
    public boolean uploadFile(String fileName)throws IOException
    {
        return writeDataFromFile("stor " + fileName, fileName);
    }
 
 
    /**
     * Upload un fichier en précisant le chemin du fichier en local. 
     */
    public boolean uploadFile(String serverPath, String localPath)throws IOException
    {
        return writeDataFromFile("stor " + serverPath, localPath);
    }
 
 
    /**
     * Créer un "point de restart" qui permetra au client de reprendre un
     * download ou un upload la ou l'a laissé.
     */
    public void setRestartPoint(int point)
    {
        restartPoint = point;
        debugPrint("Restart noted");
    }
 
 
    /** 
     * Récupère le code de réponse du server FTP. En effet les serveurs FTP répondent
     * par des phrases de ce type "xxx message". L'on récupère donc ce code à
     * 3 chiffres pour identifier la nature de la réponse (erreur, envoi, etc...).
     */
    private int getServerReply() throws IOException
    {
        return Integer.parseInt(getFullServerReply().substring(0, 3));
    }
 
 
    /** 
     * On retourne la dèrnière ligne de réponse du serveur.
     */
    private String getFullServerReply() throws IOException
    {
        String reply;
 
        do {
            reply = inputStream.readLine();
            debugPrint(reply);
        } while(!(Character.isDigit(reply.charAt(0)) && 
                  Character.isDigit(reply.charAt(1)) &&
                  Character.isDigit(reply.charAt(2)) &&
                  reply.charAt(3) == ' '));
 
        return reply;
    }
 
 
    /** 
     * On retourne la dèrnière ligne de réponse du serveur.
     * On stock l'intégralité de la réponde dans un buffer.
     */
    private String getFullServerReply(StringBuffer fullReply)throws IOException
    {
        String reply;
        fullReply.setLength(0);
 
        do {
            reply = inputStream.readLine();
            debugPrint(reply);
            fullReply.append(reply + lineTerm);
        } while(!(Character.isDigit(reply.charAt(0)) && 
                  Character.isDigit(reply.charAt(1)) &&
                  Character.isDigit(reply.charAt(2)) &&
                  reply.charAt(3) == ' '));
 
		if (fullReply.length() > 0)  
		{  
			fullReply.setLength(fullReply.length() - lineTerm.length());
		}
 
        return reply;
    }
 
 
    /** 
     * On récupère la liste des fichiers présents dans le dossier courant.
     */
	public String listFiles()
		throws IOException
	{
		return listFiles("");
	}
 
 
    /** 
     * On récupère la liste des fichiers selon le paramètre passé en argument.
     * Ce paramètre peut être le chemin complet, un mask ou les deux.
     * Exemple: "/pub/files/*.txt" va retourner la list de tous les fichiers
     * texte du dossier "files".
     */
	public String listFiles(String params) throws IOException
	{
		StringBuffer files = new StringBuffer();
		StringBuffer dirs = new StringBuffer();
		if (!getAndParseDirList(params, files, dirs))
		{
			debugPrint("Error getting file list");
		}
 
		return files.toString();
	}
 
 
    /** 
     * On récupère la liste des dossiers présents dans le dossier courant.
     */
	public String listSubdirectories()
		throws IOException
	{
		return listSubdirectories("");
	}
 
 
    /** 
     * On récupère la liste des sous dossiers selon le paramètre passé en argument.
     * Ce paramètre peut être le chemin complet, un mask ou les deux.
     * Exemple: "/pub/files/Sub*"
     */
	public String listSubdirectories(String params)throws IOException
	{
		StringBuffer files = new StringBuffer();
		StringBuffer dirs = new StringBuffer();
		if (!getAndParseDirList(params, files, dirs))
		{
			debugPrint("Error getting dir list");
		}
 
		return dirs.toString();
	}
 
 
    /** 
     * Envoi et récupère le résultat d'une commande de listage
     * tel que LIST ou NLIST.
     */
    private String processFileListCommand(String command)throws IOException
    {
        StringBuffer reply = new StringBuffer();
        String replyString;
 
        //Il est a noté que le listing des fichiers et dossier nécéssite,
        //comme le transfer de fichiers, d'une ouverture de port, coté client
        //ou coté serveur en fonction du mode de connection (passif ou actif).
 
		boolean success = executeDataCommand(command, reply);
 
		if (!success)
		{
			return "";
		}
 
        replyString = reply.toString();
 
        if(reply.length() > 0)
        {
        	return replyString.substring(0, reply.length() - 1);
        } 
        else 
        {
        	return replyString;
        }
    }
 
 
	/**
         * On récupère toutes les infos d'un dossier et on parse le résultat pour
         * récupérer la list des fichiers et des sous dossiers.
         */
	private boolean getAndParseDirList(String params, StringBuffer files, StringBuffer dirs)throws IOException
	{
		// On initialise à 0 les variables de retour
		files.setLength(0);
		dirs.setLength(0);
 
		// On fait les demmandes de listage avec les commandes NLST et LIST
		String shortList = processFileListCommand("NLST " + params);
		String longList = processFileListCommand("LIST " + params);
 
		// On tokenize les lignes récupérées
		StringTokenizer sList = new StringTokenizer(shortList, "\n");
		StringTokenizer lList = new StringTokenizer(longList, "\n");
 
		// Variables donc on va avoir besoin...
		String sString;
		String lString;
 
		// A noté que les deux lists ont le même nombre de ligne.
		while ((sList.hasMoreTokens()) && (lList.hasMoreTokens())) {
			sString = sList.nextToken();
			lString = lList.nextToken();
 
			if (lString.length() > 0)
			{
				if (lString.startsWith("d"))
				{
					dirs.append(sString.trim() + lineTerm);
					debugPrint("Dir: " + sString);
				} 
				else if (lString.startsWith("-")) 
				{
					files.append(sString.trim() + lineTerm);
					debugPrint("File: " + sString);
				} 
				else 
				{
					// Les liens symboliques commencent avec un "l"
					// (lowercase L) mais ne sont pas géré ici.
					debugPrint("Unknown: " + lString);
				}
			}
		}
 
		if (files.length() > 0)  {  files.setLength(files.length() - lineTerm.length());  }
		if (dirs.length() > 0)  {  dirs.setLength(dirs.length() - lineTerm.length());  }
 
		return true;
	}
 
 
    /**
     * Execute une commande simple sur le FTP et retourne juste
     * le code réponse du message de retour.
     */
    public int executeCommand(String command)throws IOException
    {
    	if(PRINT_DEBUG_INFO) System.out.println(command);
        outputStream.println(command);
        return getServerReply();
    }
 
 
    /**
     * Execute une command FTP et retourne la dernière ligne de réponse du serveur.
     */
    public String getExecutionResponse(String command)throws IOException
    {
		if(PRINT_DEBUG_INFO) System.out.println(command);
        outputStream.println(command);
        return getFullServerReply();
    }
 
 
    /**
     * Execute une commande et stock le résultat dans un fichier.
     * Cette fonction à l'avantage de retourner un boulean pour être
     * tenu au courant du bon déroulemet de l'opération.
     */
    public boolean readDataToFile(String command, String fileName)throws IOException
    {
        // On ouvre le fichier en local
        RandomAccessFile outfile = new RandomAccessFile(fileName, "rw");
 
        // On lance un restart si désiré
        if (restartPoint != 0) {
            debugPrint("Seeking to " + restartPoint);
            outfile.seek(restartPoint);
        }
 
        // Converti le RandomAccessFile en un OutputStream
        FileOutputStream fileStream = new FileOutputStream(outfile.getFD());
        boolean success = executeDataCommand(command, fileStream);
 
        outfile.close();
 
        return success;
    }
 
 
    /**
     * Execute une commande depuis le contenu d'un fichier.
     * Cette fonction retourne un boulean pour être
     * tenu au courant du bon déroulemet de l'opération.
     */
    public boolean writeDataFromFile(String command, String fileName)throws IOException
    {
		// On ouvre le fichier en local
        RandomAccessFile infile = new RandomAccessFile(fileName, "r");
 
		// On lance un restart si désiré
        if (restartPoint != 0) {
            debugPrint("Seeking to " + restartPoint);
            infile.seek(restartPoint);
        }
 
        // Converti le RandomAccessFile en un InputStream
        FileInputStream fileStream = new FileInputStream(infile.getFD());
        boolean success = executeDataCommand(command, fileStream);
 
        infile.close();
 
        return success;
    }
 
 
    /**
     * Exécute une commande sur le serveur FTP et retourne le résultat
     * sur le flux de sortie spécifié en argument.
     * Retourne true si l'opération c'est effectuée sans problème, sinon false. 
     */
    public boolean executeDataCommand(String command, OutputStream out) throws IOException
    {
    	//Mode passif
		if(CONNECTION_MODE == 0)
		{
			if (!setupDataPasv(command)) return false;
			InputStream in = pasvSocket.getInputStream();
			transferData(in,out);
			in.close();
			pasvSocket.close();
		}
		//Mode actif
		else if(CONNECTION_MODE == 1)
		{
			// On ouvre un socket de donné en local
			ServerSocket serverSocket = new ServerSocket(0);
			if (!setupDataPort(command, serverSocket)) return false;
			Socket clientSocket = serverSocket.accept();
 
			// On transfer les donnés
			InputStream in = clientSocket.getInputStream();
			transferData(in, out);
 
			in.close();
			clientSocket.close();
			serverSocket.close();
		}
 
        return isPositiveCompleteResponse(getServerReply());    
    }
 
 
    /**
     * Exécute une commande sur le serveur FTP depuis le flux d'entrée
     * spécifié en argument.
     * Retourne true si l'opération c'est effectuée sans problème, sinon false. 
     */
    public boolean executeDataCommand(String command, InputStream in)throws IOException
    {
    	//Mode passif
		if(CONNECTION_MODE == 0)
		{
			if (!setupDataPasv(command)) return false;
			OutputStream out = pasvSocket.getOutputStream();
			transferData(in,out);
			out.close();
			pasvSocket.close();
		}
		//Mode actif
		else if(CONNECTION_MODE == 1)
		{
			// On ouvre un socket de donné en local
			ServerSocket serverSocket = new ServerSocket(0);
			if (!setupDataPort(command, serverSocket)) return false;
			Socket clientSocket = serverSocket.accept();
 
			// On transfer les donnés
			OutputStream out = clientSocket.getOutputStream();
			transferData(in, out);
 
			out.close();
			clientSocket.close();
			serverSocket.close();
		}
        return isPositiveCompleteResponse(getServerReply());    
    }
 
    /**
     * Exécute une commande sur le serveur FTP et retourne le résultat
     * dans un buffer spécifié en argument.
     * Retourne true si l'opération s'est effectuée sans problème, sinon false. 
     */
    public boolean executeDataCommand(String command, StringBuffer sb)throws IOException
    {
    	//Mode passif
		if(CONNECTION_MODE == 0)
		{
			if (!setupDataPasv(command)) return false;
			InputStream in = pasvSocket.getInputStream();
			transferData(in,sb);
			in.close();
			pasvSocket.close();
		}
		//Mode actif
		else if(CONNECTION_MODE == 1)
		{
			// On ouvre un socket de donné en local
			ServerSocket serverSocket = new ServerSocket(0);
			if (!setupDataPort(command, serverSocket)) return false;
			Socket clientSocket = serverSocket.accept();
 
			// On transfer les donnés
			InputStream in = clientSocket.getInputStream();			
			transferData(in, sb);
 
			in.close();
			clientSocket.close();
			serverSocket.close();
		}
 
        return isPositiveCompleteResponse(getServerReply());    
    }
 
 
    /**
     * Transfer des données depuis un flux d'entrée vers un flux de sortie.
     */
    private void transferData(InputStream in, OutputStream out) throws IOException
    {
        byte b[] = new byte[BLOCK_SIZE];
        int amount;
 
		// Stock les donnés dans un fichier
        while ((amount = in.read(b)) > 0)
        {
            out.write(b, 0, amount);
        }
    }
 
    /**
     * Transfer des données depuis un flux d'entrée vers un buffer.
     */
    private void transferData(InputStream in, StringBuffer sb) throws IOException
    {		
        byte b[] = new byte[BLOCK_SIZE];
        int amount;
 
        // Stock les donnés dans un buffer
        while ((amount = in.read(b)) > 0)
        {
            sb.append(new String(b, 0, amount));
        }
    }
 
 
    /**
     * On execute la commande donnée en spécifiant au préalable:
     * - le PORT sur lequel le serveur FTP va se connecter
     * - le type de transfer. "TYPE i" pour un transfer binaire.
     * - le restartpoint si il existe
     * Si l'oprération s'est effectuée avec succès on retourne true, sinon false.
     */
    private boolean setupDataPort(String command, ServerSocket serverSocket) throws IOException
    {
 
        if (!openPort(serverSocket)) return false;
 
        // Lance le mode binaire pour la récéption des donnés
		if(PRINT_DEBUG_INFO) System.out.println("TYPE i");
		outputStream.println("TYPE i");
		if (!isPositiveCompleteResponse(getServerReply()))
		{
			debugPrint("Could not set transfer type");
			return false;
		}
 
        // Si l'on a un point de restart
        if (restartPoint != 0) {
			if(PRINT_DEBUG_INFO) System.out.println("rest " + restartPoint);
            outputStream.println("rest " + restartPoint);
            restartPoint = 0;
            // TODO: Interpret server response here
            getServerReply();
        }
 
        // Envoi de la command
		if(PRINT_DEBUG_INFO) System.out.println(command);
        outputStream.println(command);
 
        return isPositivePreliminaryResponse(getServerReply());
    }
 
	/**
        * On execute la commande donnée en spécifiant au préalable:
        * - le PORT sur lequel l'on va se connecter
        * - le type de transfer. "TYPE i" pour un transfer binaire.
        * - le restartpoint si il existe
        * Si l'oprération s'est effectuée avec succès on retourne true, sinon false.
        */
	private boolean setupDataPasv(String command) throws IOException
	{
 
		if (!openPasv()) return false;
 
		// Lance le mode binaire pour la récéption des donnés
		if(PRINT_DEBUG_INFO) System.out.println("TYPE i");
		outputStream.println("TYPE i");
		if (!isPositiveCompleteResponse(getServerReply()))
		{
			debugPrint("Could not set transfer type");
			return false;
		}
 
		// Si l'on a un point de restart
		if (restartPoint != 0) {
			if(PRINT_DEBUG_INFO) System.out.println("rest " + restartPoint);
			outputStream.println("rest " + restartPoint);
			restartPoint = 0;
			// TODO: Interpret server response here
			getServerReply();
		}
 
		// Envoi de la command
		if(PRINT_DEBUG_INFO) System.out.println(command);
		outputStream.println(command);
 
		return isPositivePreliminaryResponse(getServerReply());
	}
 
    /**
     * On récupère notre adresse IP et notre numero de port grâce à notre
     * ServerSocket et on envoi le tout au serveru FTP via la commande PORT.
     * C'est l'inverse du mode passif avec la commande PASV.
     * Si l'oprération s'est effectuée avec succès on retourne true, sinon false.
     */
    private boolean openPort(ServerSocket serverSocket) throws IOException
    {                        
        int localport = serverSocket.getLocalPort();
 
        // On récupère l'adresse IP locale
        InetAddress inetaddress = serverSocket.getInetAddress();
        InetAddress localip;
        try 
        {
            localip = inetaddress.getLocalHost();
        }
        catch(UnknownHostException e)
        {
            debugPrint("Can't get local host");
            return false;
        }
 
        byte[] addrbytes = localip.getAddress();
        short addrshorts[] = new short[4];
 
        for(int i = 0; i <= 3; i++)
        {
            addrshorts[i] = addrbytes[i];
            if (addrshorts[i] < 0)
                addrshorts[i] += 256;
        }
 
        String port = "port " + addrshorts[0] + "," + addrshorts[1] +
		"," + addrshorts[2] + "," + addrshorts[3] + "," +
		((localport & 0xff00) >> 8) + "," +
		(localport & 0x00ff);
 
        if(PRINT_DEBUG_INFO) System.out.println(port);
        outputStream.println(port);
 
        return isPositiveCompleteResponse(getServerReply());
    }
 
    /**
     * On demande au serveur FTP sur quelle adresse IP et quel numero de PORT
     * l'on va établir la connection.
     * C'est l'inverse du mode Actif avec la commande PORT.
     * Si l'opération s'est effectuée avec succès on retourne true, sinon false.
     */
	private boolean openPasv() throws IOException
	{
		//On passe en mode passif
		String tmp = getExecutionResponse("PASV");
		String pasv = excludeCode(tmp);
		//On récupère l'IP et le PORT pour la connection
		pasv = pasv.substring(pasv.indexOf("(")+1,pasv.indexOf(")"));
		String[] splitedPasv = pasv.split(",");
		int port1 = Integer.parseInt(splitedPasv[4]);
		int port2 = Integer.parseInt(splitedPasv[5]);
		int port = (port1*256)+port2;
		String ip = splitedPasv[0]+"."+splitedPasv[1]+"."+splitedPasv[2]+"."+splitedPasv[3];
 
		pasvSocket = new Socket(ip,port);
 
		return isPositiveCompleteResponse(Integer.parseInt(tmp.substring(0,3)));
	}
 
    /**
     * Retourne true si le code réponse du serveur est compris entre 100 et 199.
     */
    private boolean isPositivePreliminaryResponse(int response)
    {
        return (response >= 100 && response < 200);
    }
 
 
    /**
     * Retourne true si le code réponse du serveur est compris entre 300 et 399.
     */
    private boolean isPositiveIntermediateResponse(int response)
    {
        return (response >= 300 && response < 400);
    }
 
    /**
     * Retourne true si le code réponse du serveur est compris entre 200 et 299.
     */
    private boolean isPositiveCompleteResponse(int response)
    {
        return (response >= 200 && response < 300);
    }
 
 
    /**
     * Retourne true si le code réponse du serveur est compris entre 400 et 499.
     */
    private boolean isTransientNegativeResponse(int response)
    {
        return (response >= 400 && response < 500);
    }
 
 
    /**
     * Retourne true si le code réponse du serveur est compris entre 500 et 599.
     */
    private boolean isPermanentNegativeResponse(int response)
    {
        return (response >= 500 && response < 600);
    }
 
 
    /**
     * Supprime le code réponse au début d'une string.
     */
    private String excludeCode(String response)
    {
        if (response.length() < 5) return response;
        return response.substring(4);
    }
 
}
Voici le code de l'autre fichiers TestFTP.java

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
 
import java.io.*;
import java.util.*;
 
class TestFTP
{
	public static void main (String[] args)
	{
		String serverName;
		FtpConnection ftp = null;
 
		try
		{
			if (args.length == 0)
			{
				serverName = getStringFromUser("Entrer le nom du serveur auquel vous voulez vous connecter: ");
				if (serverName.length() == 0)  {  return;  }
			}  else  {
				serverName = args[0];
			}
 
			// Mettez le 1er argument à true si vous désirez afficher les messages de 
			// communication entre vous et le serveur.
			// Le deusième argument règle la méthode de connection
			// 0: Passif (PASV)
			//1: Actif (PORT)
			ftp = new FtpConnection(false,1);
			System.out.println("Connection anonyme à " + serverName);
			ftp.connect(serverName);
 
			if (ftp.login("anonymous", "blah@blah.blah"))
			{
				System.out.println("Identification réussie !");
				System.out.println("Le type de system est: " + ftp.getSystemType());
				System.out.println("Le dossier courant est: " + ftp.getCurrentDirectory());
				String files = ftp.listFiles();
				String subDirs = ftp.listSubdirectories();
				System.out.println("Fichiers:\n" + files);
				System.out.println("Sous dosssiers:\n" + subDirs);
 
				// On essaye de passer dans le 1er sous-dossier
				StringTokenizer st = new StringTokenizer(subDirs, ftp.lineTerm);
				String sdName = "";
				if (st.hasMoreTokens())  { sdName = st.nextToken(); }
 
				if (sdName.length() > 0)
				{
					System.out.println("Changement de dossier vers: " + sdName);
					if (ftp.changeDirectory(sdName))
					{
						// Juste pour le test, on va essayé de télécharger les 3 premiers fichiers.
						files = ftp.listFiles();
						st = new StringTokenizer(files, ftp.lineTerm);
 
						String fileName;
						int count = 1;
						while ((st.hasMoreTokens()) && (count < 3))
						{
							fileName = st.nextToken();
							System.out.println("Téléchargement de " + fileName + " vers C:\\");
							try
							{
								if (ftp.downloadFile(fileName, "C:\\" + fileName))
								{
									System.out.println("Téléchargement réussi!");
								}  else  {
									System.out.println("Erreur lors du Téléchargement " + fileName);
								}
							}  catch(Exception de)  {
								System.out.println("ERROR: " + de.getMessage());
							}
 
							count++;
						}
					}
 
				}  else  {
					System.out.println("Il n'y a pas de sous dossier!");
				}
 
				ftp.logout();
				ftp.disconnect();
				System.out.println("Disconnect et loggout.");
			}  else  {
				System.out.println("Connection impossible :/.");
			}
		}  catch(Exception e)  {
			e.printStackTrace();
			try { ftp.disconnect(); }  catch(Exception e2)  {}
		}
	}
 
	// Fonction privée pour récupérer le nom de l'host
	private static String getStringFromUser(String prompt) throws IOException
	{
		System.out.print(prompt);
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		return br.readLine();
	}
 
}
et quand je lance le fichier TestFTP.java ça me fais les erreurs suivantes :

Entrer le nom du serveur auquel vous voulez vous connecter: host
Connection anonyme Ó host
java.net.UnknownHostException: host
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:177)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
at java.net.Socket.connect(Socket.java:507)
at java.net.Socket.connect(Socket.java:457)
at java.net.Socket.<init>(Socket.java:365)
at java.net.Socket.<init>(Socket.java:178)
at FtpConnection.connect(FtpConnection.java:125)
at FtpConnection.connect(FtpConnection.java:116)
at TestFTP.main(TestFTP.java:28)
Press any key to continue...

Merci beaucoup