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

Java Discussion :

Appeler une fonction qui est dans une Java Class à partir d'un fichier JFrame Form


Sujet :

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 Appeler une fonction qui est dans une Java Class à partir d'un fichier JFrame Form
    Bonjour, je souhaiterai faire appel à mon code qui se trouve dans la fonction main de mon fichier "TestFTP" à partir de mon fichier JFrame "Affichage". En cliquant sur le bouton 'Passage du badge', je voudrais donc faire appel au code qui se trouve dans mon fichier "TestFTP".
    Mais je n'y arrive pas.

    Voici mes codes:

    1ère fichier: "TestFTP"
    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
     
    /* <!-- in case someone opens this in a browser... --> <pre> */
    package Test;
     
    import java.io.*;
    import java.util.*;
     
    /* This program/class is meant to test the functionality
     * of the FTPConnection class.
     */
     
    class TestFTP
    {
    	public static void main (String[] args)
    	{
    		String serverName;
    		FTPConnection ftp = null;
     
    		try
    		{
    			if (args.length == 0)
    			{
                                    serverName = "localhost";
    				//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("Connection à " + serverName);
    			ftp.connect(serverName);
     
    			if (ftp.login("GARDIEN", "admin"))
    			{
    				System.out.println("Authentification réussie!");
    				System.out.println("Le type de système est: " + ftp.getSystemType());
    				System.out.println("Le répertoire courant est: " + 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\\Jérémy GRESLON\\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éloggé.");
    			}  else  {
    				System.out.println("Désolé, impossible de se connecter au serveur.");
    			}
    		}  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();
    	}
     
    }

    on code au post suivant.

  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
    mon 2ème fichier: "FTPConnection"

    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
     
    package Test;
     
    import java.io.*;
    import java.net.*;
    import java.util.*;
     
     
    public class FTPConnection extends Object {
     
        /**
         * If this flag is on, we print out debugging information to stdout during
         * execution.  Useful for debugging the FTP class and seeing the server's
         * responses directly.
         */
        private static boolean PRINT_DEBUG_INFO = false;
     
        /**
         * The socket through which we are connected to the FTP server.
         */
        private Socket connectionSocket = null;
        /**
         * The socket output stream.
         */
        private PrintStream outputStream = null;
        /**
         * The socket input stream.
         */
        private BufferedReader inputStream = null;
     
        /**
         * The offset at which we resume a file transfer.
         */
        private long restartPoint = 0L;
     
        /**
         * Added by Julian: If this flag is on, we're currently logged in to something.
         */
        private boolean loggedIn = false;
     
        /**
         * Added by Julian: This is the line terminator to use for multi-line responses.
         */
        public String lineTerm = "\n";
     
        /**
         * Added by Julian: This is the size of the data blocks we use for transferring
         * files.
         */
        private static int BLOCK_SIZE = 4096;
     
     
        /**
         * Added by Julian: After you create an FTPConnection object, you will call the
         * connect() and login() methods to access your server. Please don't forget to
         * logout() and disconnect() when you're done (it's only polite...).
         */
        public FTPConnection ()
        {
        	// default constructor (obviously) -- this is just good to have...
        }
     
     
        /**
         * Added by Julian: Allows you to specify if you want to send debug output to
         * the console (true if you do, false if you don't).
         */
        public FTPConnection (boolean debugOut)
        {
        	PRINT_DEBUG_INFO = debugOut;
        }
     
     
        /**
         * Prints debugging information to stdout if the private flag
         * <code>PRINT_DEBUG_INFO</code> is turned on.
         */
        private void debugPrint(String message) {
            if (PRINT_DEBUG_INFO) System.err.println(message);
        }
     
     
        /**
         * Connects to the given FTP host on port 21, the default FTP port.
         */
        public boolean connect(String host)
            throws UnknownHostException, IOException
        {
            return connect(host, 21);
        }
     
     
        /**
         * Connects to the given FTP host on the given port.
         */
        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;
        }
     
     
        /**
         * Disconnects from the host to which we are currently connected.
         */
        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;
            }
        }
     
     
        /**
         * Wrapper for the commands <code>user [username]</code> and <code>pass
         * [password]</code>.
         */
        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;
        }
     
     
        /**
         * Added by Julian: Logout before you disconnect (this is good form).
         */
        public boolean logout()
            throws IOException
        {
            int response = executeCommand("quit");
            loggedIn = !isPositiveCompleteResponse(response);
            return !loggedIn;
        }
     
     
        /**
         * Wrapper for the command <code>cwd [directory]</code>.
         */
        public boolean changeDirectory(String directory)
            throws IOException
        {
            int response = executeCommand("cwd " + directory);
            return isPositiveCompleteResponse(response);
        }
     
     
        /**
         * Wrapper for the commands <code>rnfr [oldName]</code> and <code>rnto
         * [newName]</code>.
         */
        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 <code>mkd [directory]</code>.
         */
        public boolean makeDirectory(String directory)
            throws IOException
        {
            int response = executeCommand("mkd " + directory);
            return isPositiveCompleteResponse(response);
        }
     
     
        /**
         * Wrapper for the command <code>rmd [directory]</code>.
         */
        public boolean removeDirectory(String directory)
            throws IOException
        {
            int response = executeCommand("rmd " + directory);
            return isPositiveCompleteResponse(response);
        }
     
     
        /**
         * Wrapper for the command <code>cdup</code>.
         */
        public boolean parentDirectory()
            throws IOException
        {
            int response = executeCommand("cdup");
            return isPositiveCompleteResponse(response);
        }
     
     
        /**
         * Wrapper for the command <code>dele [fileName]</code>.
         */
        public boolean deleteFile(String fileName)
            throws IOException
        {
            int response = executeCommand("dele " + fileName);
            return isPositiveCompleteResponse(response);
        }
     
     
        /**
         * Wrapper for the command <code>pwd</code>.
         */
        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;
        }
     
     
        /**
         * Wrapper for the command <code>syst</code>.
         */
        public String getSystemType()
            throws IOException
        {
            return excludeCode(getExecutionResponse("syst"));
        }
     
     
        /**
         * Wrapper for the command <code>mdtm [fileName]</code>.  If the file does
         * not exist, we return -1;
         */
        public long getModificationTime(String fileName)
            throws IOException
        {
            String response = excludeCode(getExecutionResponse("mdtm " + fileName));
            try {
                return Long.parseLong(response);
            } catch (Exception e) {
                return -1L;
            }
        }
     
     
        /**
         * Wrapper for the command <code>size [fileName]</code>.  If the file does
         * not exist, we return -1;
         */
        public long getFileSize(String fileName)
            throws IOException
        {
            String response = excludeCode(getExecutionResponse("size " + fileName));
            try {
                return Long.parseLong(response);
            } catch (Exception e) {
                return -1L;
            }
        }
     
     
        /**
         * Wrapper for the command <code>retr [fileName]</code>.
         */
        public boolean downloadFile(String fileName)
            throws IOException
        {
            return readDataToFile("retr " + fileName, fileName);
        }
     
     
        /**
         * Wrapper for the command <code>retr [serverPath]</code>. The local file
         * path to which we will write is given by <code>localPath</code>. 
         */
        public boolean downloadFile(String serverPath, String localPath)
            throws IOException
        {
            return readDataToFile("retr " + serverPath, localPath);
        }
     
     
        /**
         * Wrapper for the command <code>stor [fileName]</code>.
         */
        public boolean uploadFile(String fileName)
            throws IOException
        {
            return writeDataFromFile("stor " + fileName, fileName);
        }
     
     
        /**
         * Wrapper for the command <code>stor [localPath]</code>. The server file
         * path to which we will write is given by <code>serverPath</code>. 
         */
        public boolean uploadFile(String serverPath, String localPath)
            throws IOException
        {
            return writeDataFromFile("stor " + serverPath, localPath);
        }
     
     
        /**
         * Set the restart point for the next download or upload operation.  This
         * lets clients resume interrupted uploads or downloads.
         */
        public void setRestartPoint(int point)
        {
            restartPoint = point;
            debugPrint("Restart noted");
        }
     
     
        /** 
         * Gets server reply code from the control port after an ftp command has
         * been executed.  It knows the last line of the response because it begins
         * with a 3 digit number and a space, (a dash instead of a space would be a
         * continuation).
         */
        private int getServerReply()
            throws IOException
        {
            return Integer.parseInt(getFullServerReply().substring(0, 3));
        }
     
     
        /** 
         * Gets server reply string from the control port after an ftp command has
         * been executed.  This consists only of the last line of the response,
         * and only the part after the response code.
         */
        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;
        }
     
     
        /**
         * Added by Julian: Returns the last line of the server reply, but also
         * returns the full multi-line reply in a StringBuffer parameter.
         */
        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;
        }
     
     
        /** 
         * Added by Julian: Gets a list of files in the current directory.
         */
    	public String listFiles()
    		throws IOException
    	{
    		return listFiles("");
    	}
     
     
        /** 
         * Added by Julian: Gets a list of files in either the current
         * directory, or one specified as a parameter. The 'params' parameter
         * can be either a directory name, a file mask, or both (such as
         * '/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();
    	}
     
     
        /** 
         * Added by Julian: Gets a list of subdirectories in the current directory.
         */
    	public String listSubdirectories()
    		throws IOException
    	{
    		return listSubdirectories("");
    	}
     
     
        /** 
         * Added by Julian: Gets a list of subdirectories in either the current
         * directory, or one specified as a parameter. The 'params' parameter
         * can be either a directory name, a name mask, or both (such as
         * '/DirName/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();
    	}
     
     
        /** 
         * Added by Julian: Sends and gets the results of a file list command,
         * like LIST or 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;
            }
        }
     
     
    	/**
             * Added by Julian: Gets a directory list from the server and parses
             * the elements into a list of files and a list of subdirectories.
             */
    	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;
    	}
     
     
        /**
         * Executes the given FTP command on our current connection, returning the
         * three digit response code from the server.  This method only works for
         * commands that do not require an additional data port.
         */
        public int executeCommand(String command)
            throws IOException
        {
            outputStream.println(command);
            return getServerReply();
        }
     
     
        /**
         * Executes the given FTP command on our current connection, returning the
         * last line of the server's response.  Useful for commands that return
         * one line of information.
         */
        public String getExecutionResponse(String command)
            throws IOException
        {
            outputStream.println(command);
            return getFullServerReply();
        }
     
     
        /**
         * Executes the given ftpd command on the server and writes the results
         * returned on the data port to the file with the given name, returning true
         * if the server indicates that the operation was successful.
         */
        public boolean readDataToFile(String command, String fileName)
            throws IOException
        {
            // Open the local file
            RandomAccessFile outfile = new RandomAccessFile(fileName, "rw");
     
            // Do restart if desired
            if (restartPoint != 0) {
                debugPrint("Seeking to " + restartPoint);
                outfile.seek(restartPoint);
            }
     
            // Convert the RandomAccessFile to an OutputStream
            FileOutputStream fileStream = new FileOutputStream(outfile.getFD());
            boolean success = executeDataCommand(command, fileStream);
     
            outfile.close();
     
            return success;
        }
     
     
        /**
         * Executes the given ftpd command on the server and writes the contents
         * of the given file to the server on an opened data port, returning true
         * if the server indicates that the operation was successful.
         */
        public boolean writeDataFromFile(String command, String fileName)
            throws IOException
        {
            // Open the local file
            RandomAccessFile infile = new RandomAccessFile(fileName, "r");
     
            // Do restart if desired
            if (restartPoint != 0) {
                debugPrint("Seeking to " + restartPoint);
                infile.seek(restartPoint);
            }
     
            // Convert the RandomAccessFile to an InputStream
            FileInputStream fileStream = new FileInputStream(infile.getFD());
            boolean success = executeDataCommand(command, fileStream);
     
            infile.close();
     
            return success;
        }
     
     
        /**
         * Executes the given ftpd command on the server and writes the results
         * returned on the data port to the given OutputStream, returning true
         * if the server indicates that the operation was successful.
         */
        public boolean executeDataCommand(String command, OutputStream out)
            throws IOException
        {
            // Open a data socket on this computer
            ServerSocket serverSocket = new ServerSocket(0);
            if (!setupDataPort(command, serverSocket)) return false;
            Socket clientSocket = serverSocket.accept();
     
            // Transfer the data
            InputStream in = clientSocket.getInputStream();
            transferData(in, out);
     
            // Clean up the data structures
            in.close();
            clientSocket.close();
            serverSocket.close();
     
            return isPositiveCompleteResponse(getServerReply());    
        }
     
     
        /**
         * Executes the given ftpd command on the server and writes the contents
         * of the given InputStream to the server on an opened data port, returning
         * true if the server indicates that the operation was successful.
         */
        public boolean executeDataCommand(String command, InputStream in)
            throws IOException
        {
            // Open a data socket on this computer
            ServerSocket serverSocket = new ServerSocket(0);
            if (!setupDataPort(command, serverSocket)) return false;
            Socket clientSocket = serverSocket.accept();
     
            // Transfer the data
            OutputStream out = clientSocket.getOutputStream();
            transferData(in, out);
     
            // Clean up the data structures
            out.close();
            clientSocket.close();
            serverSocket.close();
     
            return isPositiveCompleteResponse(getServerReply());    
        }
     
     
        /**
         * Added by Julian: Executes the given ftpd command on the server 
         * and writes the results returned on the data port to the given 
         * StringBuffer, returning true if the server indicates that the 
         * operation was successful.
         */
        public boolean executeDataCommand(String command, StringBuffer sb)
            throws IOException
        {
            // Open a data socket on this computer
            ServerSocket serverSocket = new ServerSocket(0);
            if (!setupDataPort(command, serverSocket)) return false;
            Socket clientSocket = serverSocket.accept();
     
            // Transfer the data
            InputStream in = clientSocket.getInputStream();
            transferData(in, sb);
     
            // Clean up the data structures
            in.close();
            clientSocket.close();
            serverSocket.close();
     
            return isPositiveCompleteResponse(getServerReply());    
        }
     
     
        /**
         * Transfers the data from the given input stream to the given output
         * stream until we reach the end of the stream.
         */
        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);
            }
        }
     
     
        /**
         * Added by Julian: Transfers the data from the given input stream 
         * to the given StringBuffer until we reach the end of the stream.
         */
        private void transferData(InputStream in, StringBuffer sb)
            throws IOException
        {
            byte b[] = new byte[BLOCK_SIZE];
            int amount;
     
            // Read the data into the StringBuffer
            while ((amount = in.read(b)) > 0) {
                sb.append(new String(b, 0, amount));
            }
        }
     
     
        /**
         * Executes the given ftpd command on the server and writes the results
         * returned on the data port to the given FilterOutputStream, returning true
         * if the server indicates that the operation was successful.
         */
        private boolean setupDataPort(String command, ServerSocket serverSocket)
            throws IOException
        {
            // Send our local data port to the server
            if (!openPort(serverSocket)) return false;
     
            // Set binary type transfer
            outputStream.println("type i");
            if (!isPositiveCompleteResponse(getServerReply())) {
                debugPrint("Could not set transfer type");
                return false;
            }
     
            // If we have a restart point, send that information
            if (restartPoint != 0) {
                outputStream.println("rest " + restartPoint);
                restartPoint = 0;
                // TODO: Interpret server response here
                getServerReply();
            }
     
            // Send the command
            outputStream.println(command);
     
            return isPositivePreliminaryResponse(getServerReply());
        }
     
     
        /**
         * Get IP address and port number from serverSocket and send them via the
         * <code>port</code> 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();
     
            // get local ip address
            InetAddress inetaddress = serverSocket.getInetAddress();
            InetAddress localip;
            try {
                localip = inetaddress.getLocalHost();
            } catch(UnknownHostException e) {
                debugPrint("Can't get local host");
                return false;
            }
     
            // get ip address in high byte order
            byte[] addrbytes = localip.getAddress();
     
            // tell server what port we are listening on
            short addrshorts[] = new short[4];
     
            // problem:  bytes greater than 127 are printed as negative numbers
            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());
        }
     
     
        /**
         * True if the given response code is in the 100-199 range.
         */
        private boolean isPositivePreliminaryResponse(int response)
        {
            return (response >= 100 && response < 200);
        }
     
     
        /**
         * True if the given response code is in the 300-399 range.
         */
        private boolean isPositiveIntermediateResponse(int response)
        {
            return (response >= 300 && response < 400);
        }
     
        /**
         * True if the given response code is in the 200-299 range.
         */
        private boolean isPositiveCompleteResponse(int response)
        {
            return (response >= 200 && response < 300);
        }
     
     
        /**
         * True if the given response code is in the 400-499 range.
         */
        private boolean isTransientNegativeResponse(int response)
        {
            return (response >= 400 && response < 500);
        }
     
     
        /**
         * True if the given response code is in the 500-599 range.
         */
        private boolean isPermanentNegativeResponse(int response)
        {
            return (response >= 500 && response < 600);
        }
     
     
        /**
         * Eliminates the response code at the beginning of the response string.
         */
        private String excludeCode(String response)
        {
            if (response.length() < 5) return response;
            return response.substring(4);
        }
     
    }
    Suite de mon code au post suivant

  3. #3
    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
    3ème fichier: "Affichage" (fichier JFrame Form)

    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
     
    /*
     * Affichage.java
     *
     * Created on 6 mars 2008, 20:57
     */
     
    package Test;
     
    import javax.swing.*;
     
    /**
     *
     * @author  Jérémy GRESLON
     */
    public class Affichage extends javax.swing.JFrame {
     
        /** Creates new form Affichage */
        public Affichage() {
            initComponents();
        }
     
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
         */
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
     
            jPanelPhoto = new javax.swing.JPanel();
            jButtonBadge = new javax.swing.JButton();
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
     
            jPanelPhoto.setBorder(javax.swing.BorderFactory.createBevelBorder(javax.swing.border.BevelBorder.RAISED));
     
            javax.swing.GroupLayout jPanelPhotoLayout = new javax.swing.GroupLayout(jPanelPhoto);
            jPanelPhoto.setLayout(jPanelPhotoLayout);
            jPanelPhotoLayout.setHorizontalGroup(
                jPanelPhotoLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGap(0, 363, Short.MAX_VALUE)
            );
            jPanelPhotoLayout.setVerticalGroup(
                jPanelPhotoLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGap(0, 353, Short.MAX_VALUE)
            );
     
            jButtonBadge.setText("Passage du badge");
            jButtonBadge.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButtonBadgeActionPerformed(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()
                    .addContainerGap(116, Short.MAX_VALUE)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                            .addComponent(jPanelPhoto, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addGap(105, 105, 105))
                        .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                            .addComponent(jButtonBadge)
                            .addGap(229, 229, 229))))
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(22, 22, 22)
                    .addComponent(jPanelPhoto, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addComponent(jButtonBadge)
                    .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
            );
     
            pack();
        }// </editor-fold>
     
        private void jButtonBadgeActionPerformed(java.awt.event.ActionEvent evt) {
            // TODO add your handling code here:
     
            //Affichage de la photo dans le panel
            ImageIcon icone = new ImageIcon("C:\\Documents and Settings\\Jérémy GRESLON\\Mes documents\\Photos_telechargees\\25.jpg");
            JLabel image = new JLabel(icone);
            image.setSize(jPanelPhoto.getWidth(), jPanelPhoto.getHeight());
            jPanelPhoto.add(image);
            jPanelPhoto.repaint();
        }
     
        /**
         * @param args the command line arguments
         */
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new Affichage().setVisible(true);
                }
            });
        }
     
        // Variables declaration - do not modify
        private javax.swing.JButton jButtonBadge;
        private javax.swing.JPanel jPanelPhoto;
        // End of variables declaration
     
    }

    Voilà pourriez-vous compléter mon code s'il vous plait ? Pour pouvoir cliquer sur mon bouton 'Passage du badge' comme je l'ai expliqué ?

    Merci beaucoup d'avance.

Discussions similaires

  1. Transmettre variable qui est dans une fonction dans une autre
    Par band22 dans le forum Général JavaScript
    Réponses: 2
    Dernier message: 05/08/2011, 08h06
  2. Réponses: 5
    Dernier message: 15/07/2009, 22h44
  3. Réponses: 1
    Dernier message: 17/12/2008, 08h39
  4. appel d'une fonction qui est dans une autre page
    Par guppy33 dans le forum Général JavaScript
    Réponses: 4
    Dernier message: 02/08/2006, 12h05
  5. Peut-on executer une fonction qui est dans un iframe ??
    Par miloud dans le forum Général JavaScript
    Réponses: 8
    Dernier message: 19/04/2006, 11h52

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