IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

avec Java Discussion :

Lire un son .wav depuis un serveur ftp


Sujet :

avec Java

  1. #1
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Février 2008
    Messages
    140
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2008
    Messages : 140
    Points : 31
    Points
    31
    Par défaut Lire un son .wav depuis un serveur ftp
    Bonjour, je veux télécharger un son .wav depuis un serveur ftp et ensuite le lire. J'ai tapé ce code, mais apparemment aucun fichier .wav n'est téléchargé. Mais il me télécharge les .jpg. Comment puis-je faire?

    voici mon code (ce fichier est un jFrame):
    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
     
    package audio_sec;
     
    import java.awt.*;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.media.*;
    import java.lang.*;
     
     
     
    public class AudioPlayer extends javax.swing.JFrame {
     
     
        /** Creates new form AudioPlayer */
        public AudioPlayer() {
            initComponents();
        }
     
     
     
    private Player player;
     
    private String audioFile;
     
     
     
    public AudioPlayer(String audioFile) {
        this.audioFile = audioFile;
    }
     
     
    //Méthode permettant de démarrer la lecture
     
    public void start() throws Exception {
    // création d'un player à partir d'un fichier source
     
     
        player = Manager.createPlayer(new MediaLocator(audioFile));
     
        // ajout d'un listener afin de contrôler les états
        // utilisation d'une classe anonyme pour le ControllerListener
    player.addControllerListener(new ControllerListener() {
     
    public void controllerUpdate(ControllerEvent controllerEvent) {
        // fin d'initialisations 
        if(controllerEvent instanceof RealizeCompleteEvent) {
            player.start();
        }
        // fin de lecture
        else if (controllerEvent instanceof EndOfMediaEvent) { 
            System.out.println("Fin de lecture : " + audioFile);
        }
    }
    });
     
    player.realize();
    }
     
     
    //Arrêt lecture
     
    public void stop() {
        if(player != null) {
            player.stop();
        }
    } 
     
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
        private void initComponents() {
     
            jButtonStart = new javax.swing.JButton();
            jButtonStop = new javax.swing.JButton();
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
     
            jButtonStart.setText("Jouer son");
            jButtonStart.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButtonStartActionPerformed(evt);
                }
            });
     
            jButtonStop.setText("Arrêter son");
            jButtonStop.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButtonStopActionPerformed(evt);
                }
            });
     
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(80, 80, 80)
                    .addComponent(jButtonStart)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 77, Short.MAX_VALUE)
                    .addComponent(jButtonStop)
                    .addGap(77, 77, 77))
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(134, 134, 134)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jButtonStart)
                        .addComponent(jButtonStop))
                    .addContainerGap(143, Short.MAX_VALUE))
            );
     
            pack();
        }// </editor-fold>                        
     
        private void jButtonStartActionPerformed(java.awt.event.ActionEvent evt) {                                             
            // TODO add your handling code here:  
     
            TestFTP test = new TestFTP();
            test.Connexion("127.0.0.1");
     
            try {
                AudioPlayer audioPlayer = new AudioPlayer("file:/C:/Documents and Settings/GRESLON Jérémy/Mes documents/Photos_telechargees/Windows XP Démarrage.wav");
     
                audioPlayer.start();                                            
            } catch (Exception ex) {
                Logger.getLogger(AudioPlayer.class.getName()).log(Level.SEVERE, null, ex);
            }
        }                                            
     
        private void jButtonStopActionPerformed(java.awt.event.ActionEvent evt) {                                            
            // TODO add your handling code here:
            AudioPlayer audioPlayer = new AudioPlayer("file:/C:/Documents and Settings/GRESLON Jérémy/Mes documents/Photos_telechargees/Windows XP Démarrage.wav");
            audioPlayer.stop();
            System.exit(0);
        }                                           
     
        /**
         * @param args the command line arguments
         */
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new AudioPlayer().setVisible(true);
                }
            });
        }
     
        // Variables declaration - do not modify                     
        private javax.swing.JButton jButtonStart;
        private javax.swing.JButton jButtonStop;
        // End of variables declaration                   
     
    }

  2. #2
    Nouveau membre du Club
    Profil pro
    Inscrit en
    Février 2008
    Messages
    140
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2008
    Messages : 140
    Points : 31
    Points
    31
    Par défaut
    Voici mes deux autres fichiers:

    Mon 2ème fichier:
    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
     
    package Test;
     
     
    import java.io.*;
    import java.net.*;
    import java.util.*;
     
     
    public class FTPConnection extends Object {
     
     
        private static boolean PRINT_DEBUG_INFO = false;
     
        /**
         * Socket à travers lequel nous sommes connectés au serveur FTP.
         */
        private Socket connectionSocket = null;
        /**
         * Les sockets flux de sortie.
         */
        private PrintStream outputStream = null;
        /**
         *  Les sockets flux d'entrée.
         */
        private BufferedReader inputStream = null;
     
        /**
         * Le décalage au cours duquel nous reprendrons un transfert de fichier.
         */
        private long restartPoint = 0L;
     
        /**
         * Si cette option est activée, nous sommes actuellement connecté à quelque chose.
         */
        private boolean loggedIn = false;
     
        /**
         * Utiliser plusieurs lignes de réponses
         */
        public String lineTerm = "\n";
     
        /**
         * il s'agit de la taille des blocs de données que nous utilisons pour le transfert
         * Fichiers.
         */
        private static int BLOCK_SIZE = 4096;
     
     
        /**
         *  
          * Après FTPConnection on créer un objet, on appelle le
          * Connect () et login (), les méthodes d'accès au serveur.
         */
        public FTPConnection ()
        {
        	//Constructeur par défaut
        }
     
     
        /**
         * nous permet de spécifier si on veut envoyer la sortie de débogage
         * De la console (si on en a un: vrai, faux si vous n'en avez pas).
         */
        public FTPConnection (boolean debugOut)
        {
        	PRINT_DEBUG_INFO = debugOut;
        }
     
     
        /**
         * Imprime les informations de débogage sur la sortie standard si le pavillon
         * PRINT_DEBUG_INFO est allumé.
         */
        private void debugPrint(String message) {
            if (PRINT_DEBUG_INFO) System.err.println(message);
        }
     
     
        /**
         *  Se connecte à l'hôte FTP donnée sur le port 21, le port FTP par défaut.
         */
        public boolean connect(String host)
            throws UnknownHostException, IOException
        {
            return connect(host, 21);
        }
     
     
        /**
         * Se connecte à l'hôte FTP donnée 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;
        }
     
     
        /**
         * Déconnecte de l'hôte à laquelle nous sommes 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;
            }
        }
     
     
        /**
         * Commandes de l'utilisateur [nom d'utilisateur] et mot de passe
         */
        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;
        }
     
     
        /**
         * Logout avant de se déconnecter.
         */
        public boolean logout()
            throws IOException
        {
            int response = executeCommand("quit");
            loggedIn = !isPositiveCompleteResponse(response);
            return !loggedIn;
        }
     
     
        /**
         *  Changement de répertoire.
         */
        public boolean changeDirectory(String directory)
            throws IOException
        {
            int response = executeCommand("cwd " + directory);
            return isPositiveCompleteResponse(response);
        }
     
     
        /**
         * Commandes rnfr [oldName] et rnto
         * [NewName].
         */
       /* 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);
        }*/
     
     
        /**
         * Wrapper for the command mkd [directory].
         */
       /* public boolean makeDirectory(String directory)
            throws IOException
        {
            int response = executeCommand("mkd " + directory);
            return isPositiveCompleteResponse(response);
        }*/
     
     
        /**
         * Wrapper for the command rmd [directory].
         */
        /*public boolean removeDirectory(String directory)
            throws IOException
        {
            int response = executeCommand("rmd " + directory);
            return isPositiveCompleteResponse(response);
        }*/
     
     
        /**
         * Wrapper for the command cdup.
         */
        public boolean parentDirectory()
            throws IOException
        {
            int response = executeCommand("cdup");
            return isPositiveCompleteResponse(response);
        }
     
     
        /**
         * Wrapper for the command dele [fileName].
         */
       /* public boolean deleteFile(String fileName)
            throws IOException
        {
            int response = executeCommand("dele " + fileName);
            return isPositiveCompleteResponse(response);
        }*/
     
     
        /**
         * Wrapper for the command pwd.
         */
        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;
        }
     
     
        /**
         * Commande syst
         */
        public String getSystemType()
            throws IOException
        {
            return excludeCode(getExecutionResponse("syst"));
        }
     
     
        /**
         * Commande mdtm [fileName]. Si le fichier
         * n'existe pas, retourne -1;
         */
        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 du fichier.  Si le fichier n'existe pas, on retourne -1.
         */
        public long getFileSize(String fileName)
            throws IOException
        {
            String response = excludeCode(getExecutionResponse("size " + fileName));
            try {
                return Long.parseLong(response);
            } catch (Exception e) {
                return -1L;
            }
        }
     
     
        /**
         * téléchargement à partir du serveur en fonction du nom de fichier
         */
        public boolean downloadFile(String fileName)
            throws IOException
        {
            return readDataToFile("retr " + fileName, fileName);
        }
     
     
        /**
         * Téléchargement du fichier à partir du serveur en fonction du chemin d'accès au serveur: localPath
         *et du chemin d'accès sur le DD: serverPath
         */
        public boolean downloadFile(String serverPath, String localPath)
            throws IOException
        {
            return readDataToFile("retr " + serverPath, localPath);
        }
     
     
        /**
         * Chargement sur le serveur en fonction du nom de fichier
         */
        public boolean uploadFile(String fileName)
            throws IOException
        {
            return writeDataFromFile("stor " + fileName, fileName);
        }
     
     
        /**
         * Chargement du fichier sur le serveur en fonction du chemin d'accès au serveur: localPath
         *et du chemin d'accès sur le DD: serverPath
         */
        public boolean uploadFile(String serverPath, String localPath)
            throws IOException
        {
            return writeDataFromFile("stor " + serverPath, localPath);
        }
     
     
        /**
         * Reprise du téléchargement où il était interrompu.
         */
        public void setRestartPoint(int point)
        {
            restartPoint = point;
            debugPrint("Restart noted");
        }
     
     
        /** 
          * Récupère le code de réponse du serveur à partir du port après qu'une commande ftp
          * a été exécutée. Elle connaît la dernière ligne de la réponse, car il commence
          * avec un nombre à 3 chiffres et un espace.
         */
        private int getServerReply()
            throws IOException
        {
            return Integer.parseInt(getFullServerReply().substring(0, 3));
        }
     
     
        /** 
         * Retourne la réponse de la chaîne de contrôle du port après qu'une commande ftp
         * soit exécutée. Ceci est pris en compte seulement à partir de la dernière ligne de la réponse,
         * et seulement la partie après le code de réponse.
         */
        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;
        }
     
     
        /**
         * Retourne la dernière ligne de la réponse du serveur, mais retourne aussi
         * tout la réponse dans un StringBuffer.
         */
        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) == ' '));
     
    		// remove any trailing line terminators from the fullReply
    		if (fullReply.length() > 0)  
    		{  
    			fullReply.setLength(fullReply.length() - lineTerm.length());
    		}
     
            return reply;
        }
     
     
        /** 
         * Liste les fichiers dans le répertoire courant
         */
    	public String listFiles()
    		throws IOException
    	{
    		return listFiles("");
    	}
     
     
        /** 
          *  Récupère la liste de fichiers que ce soit dans le répertoire
          * courant, ou celle spécifiée en paramètre. Le paramètre 'params' 
          * peut être soit un nom de répertoire, un masque de fichier, ou les deux (comme
          * '/ DirName / *. txt ").
         */
    	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();
    	}
     
     
        /** 
         * Récupère la liste des sous répertoires du répertoire courant
         */
    	public String listSubdirectories()
    		throws IOException
    	{
    		return listSubdirectories("");
    	}
     
     
        /** 
          * Récupère une liste de sous-répertoires que ce soit dans le répertoire
          * courant, ou celle spécifiée en paramètre. Le paramètre 'params' 
          *peut être soit un nom de répertoire, un masque de nom, ou les deux (comme
          * '/ DirName / Sous *').
         */
    	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();
    	}
     
     
        /** 
         * Envoie et reçoit les résultats d'un fichier de la liste de commande,
         * ou comme LIST NLST.
         */
        private String processFileListCommand(String command)
            throws IOException
        {
            StringBuffer reply = new StringBuffer();
            String replyString;
     
            // file listings require you to issue a PORT command, 
            // like a file transfer
    		boolean success = executeDataCommand(command, reply);
    		if (!success)
    		{
    			return "";
    		}
     
            replyString = reply.toString();
            // strip the trailing line terminator from the reply
            if (reply.length() > 0)
            {
            	return replyString.substring(0, reply.length() - 1);
            }  else  {
            	return replyString;
            }
        }
     
     
    	/**
             * Obtient une liste des répertoires du serveur et analyse
             * les éléments dans une liste de fichiers et la liste des sous-répertoires
             */
    	private boolean getAndParseDirList(String params, StringBuffer files, StringBuffer dirs)
    		throws IOException
    	{
    		// reset the return variables (we're using StringBuffers instead of
    		// Strings because you can't change a String value and pass it back
    		// to the calling routine -- changing a String creates a new object)
    		files.setLength(0);
    		dirs.setLength(0);
     
    		// get the NLST and the LIST -- don't worry if the commands
    		// don't work, because we'll just end up sending nothing back
    		// if that's the case
    		String shortList = processFileListCommand("nlst " + params);
    		String longList = processFileListCommand("list " + params);
     
    		// tokenize the lists we got, using a newline as a separator
    		StringTokenizer sList = new StringTokenizer(shortList, "\n");
    		StringTokenizer lList = new StringTokenizer(longList, "\n");
     
    		// other variables we'll need
    		String sString;
    		String lString;
     
    		// assume that both lists have the same number of elements
    		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  {
    					// actually, symbolic links will start with an "l"
    					// (lowercase L), but we're not going to mess with
    					// those
    					debugPrint("Unknown: " + lString);
    				}
    			}
    		}
     
    		// strip off any trailing line terminators and return the values
    		if (files.length() > 0)  {  files.setLength(files.length() - lineTerm.length());  }
    		if (dirs.length() > 0)  {  dirs.setLength(dirs.length() - lineTerm.length());  }
     
    		return true;
    	}
     
     
        /**
          * Exécute la commande donnée FTP sur notre connexion actuelle, le retour
          * Le code à trois chiffres de la réponse du serveur. Cette méthode ne fonctionne que pour
          * Commandes qui ne nécessitent pas un port de données supplémentaires.
         */
        public int executeCommand(String command)
            throws IOException
        {
            outputStream.println(command);
            return getServerReply();
        }
     
     
        /**
         * Exécute la commande FTP donnée sur la connexion actuelle, retourne la dernière ligne de la réponse du serveur.
         * Utile pour les commandes qui renvoient une ligne d'information.
         */
        public String getExecutionResponse(String command)
            throws IOException
        {
            outputStream.println(command);
            return getFullServerReply();
        }
     
     
        /**
         * Ftpd exécute la commande donnée sur le serveur et écrit les résultats
         * rentrés sur le port de données dans le fichier avec le nom donné, en retournant true
         * si le serveur indique que l'opération a réussi.
         */
        public boolean readDataToFile(String command, String fileName)
            throws IOException
        {
            // Ouverture du fichier local
            RandomAccessFile outfile = new RandomAccessFile(fileName, "rw");
     
            // Redémarrage si on le désire
            if (restartPoint != 0) {
                debugPrint("Seeking to " + restartPoint);
                outfile.seek(restartPoint);
            }
     
            // Convertir les RandomAccessFile en OutputStream
            FileOutputStream fileStream = new FileOutputStream(outfile.getFD());
            boolean success = executeDataCommand(command, fileStream);
     
            outfile.close();
     
            return success;
        }
     
     
        /**
         * Ftpd exécute la commande donnée sur le serveur et écrit le contenu
         * des données sur le serveur de fichier sur un port donnée, en retournant true
         * si le serveur indique que l'opération a réussi.
         */
        public boolean writeDataFromFile(String command, String fileName)
            throws IOException
        {
            // ouverture du fichier local
            RandomAccessFile infile = new RandomAccessFile(fileName, "r");
     
            // redémarrage si on le souhaite
            if (restartPoint != 0) {
                debugPrint("Seeking to " + restartPoint);
                infile.seek(restartPoint);
            }
     
            // Convertir le RandomAccessFile en InputStream
            FileInputStream fileStream = new FileInputStream(infile.getFD());
            boolean success = executeDataCommand(command, fileStream);
     
            infile.close();
     
            return success;
        }
     
     
        /**
         * Ftpd exécute la commande donnée sur le serveur et écrit les résultats
         * rentrés sur le port de données à la donnée OutputStream, en retournant true
         * si l'opération a réussi.
         */
        public boolean executeDataCommand(String command, OutputStream out)
            throws IOException
        {
            // Ouvrir une socket de données sur cet ordi
            ServerSocket serverSocket = new ServerSocket(0);
            if (!setupDataPort(command, serverSocket)) return false;
            Socket clientSocket = serverSocket.accept();
     
            // Transfert des données
            InputStream in = clientSocket.getInputStream();
            transferData(in, out);
     
            // Nettoyer les structures de données
            in.close();
            clientSocket.close();
            serverSocket.close();
     
            return isPositiveCompleteResponse(getServerReply());    
        }
     
     
        /**
         * Ftpd exécute la commande donnée sur le serveur et écrit le contenu
         * de InputStream au serveur de données sur un port ouvert.
         * Retourne vrai si l'opération a réussie.
         */
        public boolean executeDataCommand(String command, InputStream in)
            throws IOException
        {
            // Ouverture d'une socket de données sur cet ordi
            ServerSocket serverSocket = new ServerSocket(0);
            if (!setupDataPort(command, serverSocket)) return false;
            Socket clientSocket = serverSocket.accept();
     
            // Transfert de données
            OutputStream out = clientSocket.getOutputStream();
            transferData(in, out);
     
            // Nettoyer les structures de données
            out.close();
            clientSocket.close();
            serverSocket.close();
     
            return isPositiveCompleteResponse(getServerReply());    
        }
     
     
        /**
         * Exécute la commande donnée sur le serveur
         * et écrit les résultats renvoyés sur le port à la donnée
         * StringBuffer, en retournant true si l'opération a réussie
         */
        public boolean executeDataCommand(String command, StringBuffer sb)
            throws IOException
        {
            // Ouverture d'une socket de données sur cet ordi
            ServerSocket serverSocket = new ServerSocket(0);
            if (!setupDataPort(command, serverSocket)) return false;
            Socket clientSocket = serverSocket.accept();
     
            // Transfert de données
            InputStream in = clientSocket.getInputStream();
            transferData(in, sb);
     
            // Nettoyer les structes de données
            in.close();
            clientSocket.close();
            serverSocket.close();
     
            return isPositiveCompleteResponse(getServerReply());    
        }
     
     
        /**
         * Transfère les données du flux d'entrée à la donnée de sortie
         * Stream jusqu'à ce que nous atteignions la fin du flux.
         */
        private void transferData(InputStream in, OutputStream out)
            throws IOException
        {
            byte b[] = new byte[BLOCK_SIZE];
            int amount;
     
            // Read the data into the file
            while ((amount = in.read(b)) > 0) {
                out.write(b, 0, amount);
            }
        }
     
     
        /**
         * Transferts des données issues du flux d'entrée à la StringBuffer jusqu'à ce que nous atteignions la fin du flux.
         */
        private void transferData(InputStream in, StringBuffer sb)
            throws IOException
        {
            byte b[] = new byte[BLOCK_SIZE];
            int amount;
     
            // Lecture des données dans StringBuffer
            while ((amount = in.read(b)) > 0) {
                sb.append(new String(b, 0, amount));
            }
        }
     
     
        /**
         * Ftpd exécute la commande donnée sur le serveur et écrit les résultats
         * Rentrés sur le port de données à la donnée FilterOutputStream, en retournant true
         * Si le serveur indique que l'opération a réussi.
         */
        private boolean setupDataPort(String command, ServerSocket serverSocket)
            throws IOException
        {
            // Envoyer port de données vers le serveur
            if (!openPort(serverSocket)) return false;
     
            // Définissez le type de transfert binaire
            outputStream.println("type i");
            if (!isPositiveCompleteResponse(getServerReply())) {
                debugPrint("Could not set transfer type");
                return false;
            }
     
            // Si on a un point de redémarrage, envoyer ces informations
            if (restartPoint != 0) {
                outputStream.println("rest " + restartPoint);
                restartPoint = 0;
                // Interpréter réponse du serveur
                getServerReply();
            }
     
            // Envoyer la commande
            outputStream.println(command);
     
            return isPositivePreliminaryResponse(getServerReply());
        }
     
     
        /**
         * Get IP address and port number from serverSocket and send them via the
         * port command to the ftp server, returning true if we get a
         * valid response from the server, returning true if the server indicates
         * that the operation was successful.
         */
     
     
        private boolean openPort(ServerSocket serverSocket)
            throws IOException
        {                        
            int localport = serverSocket.getLocalPort();
     
            // obtenir l'adresse ip local
            InetAddress inetaddress = serverSocket.getInetAddress();
            InetAddress localip;
            try {
                localip = inetaddress.getLocalHost();
            } catch(UnknownHostException e) {
                debugPrint("Can't get local host");
                return false;
            }
     
            //obtenir l'adresse ip en octet
            byte[] addrbytes = localip.getAddress();
     
            // Serveur de raconter ce que nous sommes à l'écoute du port sur
            short addrshorts[] = new short[4];
     
            // Problème: octets supérieures à 127 sont considérés des chiffres négatifs
            for(int i = 0; i <= 3; i++) {
                addrshorts[i] = addrbytes[i];
                if (addrshorts[i] < 0)
                    addrshorts[i] += 256;
            }
     
            outputStream.println("port " + addrshorts[0] + "," + addrshorts[1] +
                                 "," + addrshorts[2] + "," + addrshorts[3] + "," +
                                 ((localport & 0xff00) >> 8) + "," +
                                 (localport & 0x00ff));
     
            return isPositiveCompleteResponse(getServerReply());
        }
     
     
        /**
         * Vrai si le code de réponse est donnée dans la fourchette 100-199.
         */
        private boolean isPositivePreliminaryResponse(int response)
        {
            return (response >= 100 && response < 200);
        }
     
     
        /**
         *  Vrai si le code de réponse est donnée dans la fourchette 300-399.
         */
        private boolean isPositiveIntermediateResponse(int response)
        {
            return (response >= 300 && response < 400);
        }
     
        /**
         *  Vrai si le code de réponse est donnée dans la fourchette 200-299.
         */
        private boolean isPositiveCompleteResponse(int response)
        {
            return (response >= 200 && response < 300);
        }
     
     
        /**
         *  Vrai si le code de réponse est donnée dans la fourchette 400-499.
         */
        private boolean isTransientNegativeResponse(int response)
        {
            return (response >= 400 && response < 500);
        }
     
     
        /**
         * Vrai si le code de réponse est donnée dans la fourchette 500-599.
         */
        private boolean isPermanentNegativeResponse(int response)
        {
            return (response >= 500 && response < 600);
        }
     
     
        /**
         * Élimine le code de réponse au début de la chaîne de réponse.
         */
        private String excludeCode(String response)
        {
            if (response.length() < 5) return response;
            return response.substring(4);
        }
     
    }
    mon 3ème fichier:
    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
     
    package audio_sec;
     
     
    import Test.FTPConnection;
    import java.io.*;
    import java.util.*;
     
     
    class TestFTP
    {
    	public void Connexion (String serverName)
    	{
     
    		FTPConnection ftp = null;
     
    		try
    		{
    			/*if (args.length == 0)
    			{       serverName = "10.104.100.72";
    				//serverName = getStringFromUser("Enter the server you would like to connect to: ");
    				if (serverName.length() == 0)  {  return;  }
    			}  else  {
    				serverName = args[0];
    			}*/
    			// set the FTPConnection parameter to true if you want to
    			// see debug output in your console window
    			ftp = new FTPConnection(false);
    			System.out.println("Conexion à " + serverName);
                            boolean test = ftp.connect(serverName);
                            System.out.println(test);
     
     
    			if (ftp.login("GARDIEN", "admin"))
    			{
    				System.out.println("Authentification réussie!");
    				System.out.println("Type de système: " + ftp.getSystemType());
    				System.out.println("Répertoire courant: " + ftp.getCurrentDirectory());
    				String files = ftp.listFiles();
    				String subDirs = ftp.listSubdirectories();
    				System.out.println("Fichiers dans le répertoire:\n" + files);
    				System.out.println("Sous-répertoires:\n" + subDirs);
     
    				// try to change to the first subdirectory
    				StringTokenizer st = new StringTokenizer(subDirs, ftp.lineTerm);
    				String sdName = "\\";
    				if (st.hasMoreTokens())  { sdName = st.nextToken(); }
     
    				if (sdName.length() > 0)
    				{
    					System.out.println("Changement de répertoire " + sdName);
    					if (ftp.changeDirectory(sdName))
    					{
    						// just for kicks, try to download the first 3 files in the directory
    						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 " + fileName + " de C:\\");
    							try
    							{
    								if (ftp.downloadFile(fileName, "C:\\Documents and Settings\\GRESLON Jérémy\\Mes documents\\Photos_telechargees\\" + fileName))
    								{
    									System.out.println("Téléchargement réussi!");
    								}  else  {
    									System.out.println("Erreur de téléchargement " + fileName);
    								}
    							}  catch(Exception de)  {
    								System.out.println("ERREUR: " + de.getMessage());
    							}
     
    							count++;
    						}
    					}
     
    				}  else  {
    					System.out.println("Il n'y a pas de sous-répertoires!");
    				}
     
    				ftp.logout();
    				ftp.disconnect();
    				System.out.println("Déconnecté et Délogger.");
    			}  else  {
    				System.out.println("Désolé, le serveur ne peut pas se connecter");
    			}
    		}  catch(Exception e)  {
    			e.printStackTrace();
    			try { ftp.disconnect(); }  catch(Exception e2)  {}
    		}
    	}
     
    	// private function that gets console input from the user
    	private static String getStringFromUser(String prompt) throws IOException
    	{
    		System.out.print(prompt);
    		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    		return br.readLine();
    	}
     
    }
    merci d'avance.

Discussions similaires

  1. Télécharger un son depuis un serveur ftp
    Par mimi51340 dans le forum Débuter avec Java
    Réponses: 1
    Dernier message: 22/04/2008, 08h41
  2. Réponses: 5
    Dernier message: 05/04/2008, 17h19
  3. [FTP] Lire un fichier txt sur un serveur FTP distant
    Par mathieu77186 dans le forum Langage
    Réponses: 3
    Dernier message: 29/01/2008, 17h10
  4. Réponses: 3
    Dernier message: 05/11/2007, 23h35
  5. [FTP] Télécharger un fichier depuis un serveur FTP
    Par bremer dans le forum Langage
    Réponses: 6
    Dernier message: 03/06/2007, 11h27

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo