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

Entrée/Sortie Java Discussion :

probleme avec generation fichier binaire


Sujet :

Entrée/Sortie Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre confirmé
    Profil pro
    Inscrit en
    Mars 2008
    Messages
    80
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2008
    Messages : 80
    Par défaut probleme avec generation fichier binaire
    bonjour tt le monde,
    voilà j ai elaboré ce code pour m aider a rentrer des valeurs octet par octet...
    la premiere partie est manuelle comme la derniere partie..

    seulement au milieu j ai a peu pres 2454 octets a rentrer donc j ai essayé d elaborer une ptite fonction qui puisse m aider a faire ca seulement ca marche pas..
    et il me retourne l erreur que cette fonction doit retourner une variable de type Byte alors que c est ske j ai ecris!!

    j comprends pas..si quelqu'un peut avoir la gentillesse de m aider ..je suis pas calé en Java..merci


    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
    import java.io.*;
    import java.util.*;
    import java.util.zip.*;
     
     
    public class  GenererFMI_224_1{
     
     
     
     
    	public static void main(String[] args){
    		ByteArrayOutputStream bos=new ByteArrayOutputStream();
    		int byteLu;
    		byte[] tab =new byte[105];
    		//ecriture dans le tampon
    		try{
     
    			bos.write((byte)0x03);//-----number of structures = -------//
     
     
    			//1er Structure
    			bos.write((byte)0x01);//-------type(0) = 1 = fragment management info -------
     
    			bos.write((byte)0x00);//--------f_m_info_id = 0 ------------
     
    			bos.write((byte)0x00); //----------ptr_fm_info= 25-------------//
    			bos.write((byte)0x00);//--------------------------------------------//
    			bos.write((byte)0x19);//-------------------------------------------//
     
    			bos.write((byte)0x00);//---------length_fm_info = 42 -------//
    			bos.write((byte)0x00);//----------------------------------------//
    			bos.write((byte)0x32);//---------------------------------------//
     
     
     
     
    			//2eme tructure 
    			bos.write((byte)0x02);//-----type(1) = 2---> DataRepository
    			bos.write((byte)0x00);//-----DR_id(1) = 0----------
     
    			bos.write((byte)0x00);//---------------ptr_DataRepository = 67-------------------//
    			bos.write((byte)0x00);//-------------------------------------------------------//
    			bos.write((byte)0x4B);//-------------------------------------------------------//
     
    			bos.write((byte)0x00);//--------length_DataRepository = 139 ----------------------//
    			bos.write((byte)0x09);//-----------------------------------------------------//
    			bos.write((byte)0x96);//-----------------------------------------------------//
     
     
    			//3eme Structure
    			bos.write((byte)0xE0);//-----------------ESG_data_repository
    			bos.write((byte)0x00);//----------------ESG_dr_id
     
    			bos.write((byte)0x00);//----------- ptr_ESG_dr = 194
    			bos.write((byte)0x09);//----------------------------------
    			bos.write((byte)0xE1);// ------------------------------
     
     
    			bos.write((byte)0x00);//-------length_ESG_dr = 10435 
    			bos.write((byte)0x00);//------------------------------------
    			bos.write((byte)0x5A);//-----------------------------------
     
     
    			}
     
    			//byte []  frg1=getFragmentManagement();
    			//byte []  frg2=getDataRepository();
    			//byte []  frg3=getESGDataRepository();
     
     
     
     
     
     
     
    		/*FileOutputStream fos = null;
     
    			fos = new FileOutputStream("ESGpartitionDeclaration.bin");
    			//fos.write(res); // zipé
    			fos.write(tab); // pas zippé
    			fos.close();
    		}*/
    		catch (Exception e)
    		{
    			e.printStackTrace();
    		}
    		finally
    		{
    			// On ferme le flux
     
    		}
     
     
     
    	}
     
     
    	/*public static byte[] gzip(byte[] ungzipped) throws IOException {
     
            final ByteArrayOutputStream bytes = new ByteArrayOutputStream();
            final GZIPOutputStream gzipOutputStream = new GZIPOutputStream(bytes);
            gzipOutputStream.write(ungzipped);
            gzipOutputStream.close();
            return bytes.toByteArray();*/
     
     
     
     
    public static byte [] getFragmentManagement()
    	{
    	byte [] tab= new byte [50];
     
    	tab[0]=	(byte)0xFF;
    	tab[1]=	(byte)0x21;
    	tab[2]=	(byte)0x00;
    	tab[3]=	(byte)0x00;
    	tab[4]=	(byte)0x00;
    	tab[5]=	(byte)0x00;
    	tab[6]=	(byte)0x00;
    	tab[7]=	(byte)0x00;
    	tab[8]=	(byte)0x00;
    	tab[9]=	(byte)0x02;
     
    	tab[10]=(byte)0x00;
    	tab[11]=(byte)0x00;
    	tab[12]=(byte)0x00;
    	tab[13]=(byte)0x16;
    	tab[14]=(byte)0x00;
    	tab[15]=(byte)0x00;
    	tab[16]=(byte)0x00;
    	tab[17]=(byte)0x03;
    	tab[18]=(byte)0x00;
    	tab[19]=(byte)0x00;
    	tab[20]=(byte)0x00;
     
    	tab[21]=(byte)0x2C;
    	tab[22]=(byte)0x00;
    	tab[23]=(byte)0x00;
    	tab[24]=(byte)0x00;
    	tab[25]=(byte)0x04;
    	tab[26]=(byte)0x00;
    	tab[27]=(byte)0x00;
    	tab[28]=(byte)0x00;
    	tab[29]=(byte)0x42;
     
    	tab[30]=(byte)0x00;
    	tab[31]=(byte)0x00;
    	tab[32]=(byte)0x00;
    	tab[33]=(byte)0x05;
    	tab[34]=(byte)0x00;
    	tab[35]=(byte)0x00;
    	tab[36]=(byte)0x00;
    	tab[37]=(byte)0x4A;
    	tab[38]=(byte)0x00;
    	tab[39]=(byte)0x00;
     
    	tab[40]=(byte)0x00;
    	tab[41]=(byte)0x06;
    	tab[42]=(byte)0x00;
    	tab[43]=(byte)0x00;
    	tab[44]=(byte)0x00;
    	tab[45]=(byte)0x52;
    	tab[46]=(byte)0x00;
    	tab[47]=(byte)0x00;
    	tab[48]=(byte)0x00;
    	tab[49]=(byte)0x00;
    	tab[50]=(byte)0x07;
     
     
     
    	return tab;
     
    	}
     
     
    public static byte [] getDataRepository()
    		{	
    		try {	RandomAccessFile raf= new RandomAccessFile ("Result_221.1.dat", "r");
    			boolean fin=false;
    			int i=0;
    			raf.seek(50);
    			byte [] tab = new byte[2454];
    			int n=raf.read(tab);
    			System.out.println("buffer length "+n);
    				//bb[0]=b;
    				//System.out.print(new String (bb));
    				//i++;
     
    				//byte [] buffer=new byte[9407];
    			        //int n= raf8.read(buffer);
    			        //System.out.println("GZIP Buffer of length "+n);
    				//byte tab[]= new byte [9407 -964];
    			        //System.arraycopy(buffer,964, tab,0,(9407-964));
    			        //System.arraycopy(bb,0, buffer,51,(10000-35));	
    			return tab;	}
    		catch (Exception e)
    		{
    			e.printStackTrace();
    		}
    	}
     
     
     
    public static byte[] getESGDataRepository()
    	{
    	byte [] tab= new byte [50];
     
    //00 00 13 00 23 10 f0 39 0 0 c3 c0 84 04 34 34 1c 1c 68 5c 87 83 00 84 13 00 23 10 f0 39 00 01 43 c0 84 04 34 34 1c 1c 5
     
     
     
     
    	tab[0]=(byte)0x00;
    	tab[1]=(byte)0x00;
    	tab[2]=(byte)0x13;
    	tab[3]=(byte)0x00;
    	tab[4]=(byte)0x23;
    	tab[5]=(byte)0x10;
    	tab[6]=(byte)0xF0;
    	tab[7]=(byte)0x39;
    	tab[8]=(byte)0x00;
    	tab[9]=(byte)0x00;
     
    	tab[10]=(byte)0xC3;
    	tab[11]=(byte)0xC0;
    	tab[12]=(byte)0x84;
    	tab[13]=(byte)0x04;
    	tab[14]=(byte)0x34;
    	tab[15]=(byte)0x34;
    	tab[16]=(byte)0x1C;
    	tab[17]=(byte)0x1C;
    	tab[18]=(byte)0x68;
    	tab[19]=(byte)0x5C;
    	tab[20]=(byte)0x87;
     
    	tab[21]=(byte)0x83;
    	tab[22]=(byte)0x00;
    	tab[23]=(byte)0x84;
    	tab[24]=(byte)0x13;
    	tab[25]=(byte)0x00;
    	tab[26]=(byte)0x23;
    	tab[27]=(byte)0x10;
    	tab[28]=(byte)0xF0;
    	tab[29]=(byte)0x39;
     
    	tab[30]=(byte)0x00;
    	tab[31]=(byte)0x01;
    	tab[32]=(byte)0x43;
    	tab[33]=(byte)0xC0;
    	tab[34]=(byte)0x84;
    	tab[35]=(byte)0x04;
    	tab[36]=(byte)0x34;
    	tab[37]=(byte)0x34;
    	tab[38]=(byte)0x1C;
    	tab[39]=(byte)0x1C;
     
    //c 87 83 01 08 13 00 23 10 f0 39 00 00 43 c0 84 04 34 34 1c 1c 68 5c 87 83 01 8a 05 00 25 10 02 1f 04 8e 05 00 25 10 
     
    //02 1f 07 12 05 00 25 10 02 1f
     
    	tab[40]=(byte)0x05;
    	tab[41]=(byte)0x0C;
    	tab[42]=(byte)0x87;
    	tab[43]=(byte)0x83;
    	tab[44]=(byte)0x01;
    	tab[45]=(byte)0x08;
    	tab[46]=(byte)0x13;
    	tab[47]=(byte)0x00;
    	tab[48]=(byte)0x23;
    	tab[49]=(byte)0x10;
    	tab[50]=(byte)0xF0;
    	tab[51]=(byte)0x39;
     
    	tab[52]=(byte)0x00;
    	tab[53]=(byte)0x00;
    	tab[54]=(byte)0x43;
    	tab[55]=(byte)0xC0;
    	tab[56]=(byte)0x84;
    	tab[57]=(byte)0x04;
    	tab[58]=(byte)0x34;
    	tab[59]=(byte)0x34;
    	tab[60]=(byte)0x1C;
     
    	tab[61]=(byte)0x1C;
    	tab[62]=(byte)0x68;
    	tab[63]=(byte)0x5C;
    	tab[64]=(byte)0x87;
    	tab[65]=(byte)0x83;
    	tab[66]=(byte)0x01;
    	tab[67]=(byte)0x8A;
    	tab[68]=(byte)0x05;
    	tab[69]=(byte)0x00;
    	tab[70]=(byte)0x25;
    	tab[71]=(byte)0x10;
     
    	tab[72]=(byte)0x02;
    	tab[73]=(byte)0x1F;
    	tab[74]=(byte)0x04;
    	tab[75]=(byte)0x8E;
    	tab[76]=(byte)0x05;
    	tab[77]=(byte)0x00;
    	tab[78]=(byte)0x25;
    	tab[79]=(byte)0x10;
    	tab[80]=(byte)0x02;
     
    	tab[81]=(byte)0x1F;
    	tab[82]=(byte)0x07;
    	tab[83]=(byte)0x12;
    	tab[84]=(byte)0x05;
    	tab[85]=(byte)0x00;
    	tab[86]=(byte)0x25;
    	tab[87]=(byte)0x10;
    	tab[88]=(byte)0x02;
    	tab[89]=(byte)0x1F;
     
    	tab[90]=(byte)0x1F;
     
     
    	return tab;
     
    }
     
     
     
    };

  2. #2
    Modérateur
    Avatar de dinobogan
    Homme Profil pro
    ingénieur
    Inscrit en
    Juin 2007
    Messages
    4 073
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 44
    Localisation : France

    Informations professionnelles :
    Activité : ingénieur
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2007
    Messages : 4 073
    Par défaut
    Après avoir catché ton exception, il te manque un return.
    N'oubliez pas de consulter les FAQ Java et les cours et tutoriels Java
    Que la force de la puissance soit avec le courage de ta sagesse.

  3. #3
    Membre confirmé
    Profil pro
    Inscrit en
    Mars 2008
    Messages
    80
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2008
    Messages : 80
    Par défaut
    Citation Envoyé par dinobogan Voir le message
    Après avoir catché ton exception, il te manque un return.
    bjr merci pr ta réponse..j ai pas tout a fait compris..si tu pouvais m aider plus en details

  4. #4
    Modérateur
    Avatar de dinobogan
    Homme Profil pro
    ingénieur
    Inscrit en
    Juin 2007
    Messages
    4 073
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 44
    Localisation : France

    Informations professionnelles :
    Activité : ingénieur
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2007
    Messages : 4 073
    Par défaut
    Citation Envoyé par SeptembreNoir84 Voir le message
    bjr merci pr ta réponse..j ai pas tout a fait compris..si tu pouvais m aider plus en details
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    public static byte [] getDataRepository()
    {	
      try
      {
        ...
        return tab;
      }
      catch (Exception e)
      {
        e.printStackTrace();
      }
     
      return null;
    }
    Avec ça, ça va compiler. Par contre, à toi de voir si tu envois null sur une erreur, ou un tableau initialiser avec autre chose.
    N'oubliez pas de consulter les FAQ Java et les cours et tutoriels Java
    Que la force de la puissance soit avec le courage de ta sagesse.

  5. #5
    Membre confirmé
    Profil pro
    Inscrit en
    Mars 2008
    Messages
    80
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2008
    Messages : 80
    Par défaut
    Citation Envoyé par dinobogan Voir le message
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    public static byte [] getDataRepository()
    {	
      try
      {
        ...
        return tab;
      }
      catch (Exception e)
      {
        e.printStackTrace();
      }
     
      return null;
    }
    Avec ça, ça va compiler. Par contre, à toi de voir si tu envois null sur une erreur, ou un tableau initialiser avec autre chose.
    merci tres gentil de ta part..en fait ske j voulais faire c 'est concatener les 3 tab en un seul et l'enregistrer dans un fichier ("final.bin")
    donc a partir de là 2 questions si tu permet :
    1* pourkoi ce "return NULL"...si tu pouvais m eclairer
    2* que me conseillerai tu de faire pour ske j ai envie de realiser

    et encore merci pour tn aide et excuse mes ignorances en JAVA

  6. #6
    Membre Expert

    Homme Profil pro
    Architecte logiciel
    Inscrit en
    Novembre 2006
    Messages
    1 252
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 50
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Architecte logiciel
    Secteur : Aéronautique - Marine - Espace - Armement

    Informations forums :
    Inscription : Novembre 2006
    Messages : 1 252
    Par défaut
    Ok, effectivement manque un return

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Probleme avec les fichier faire un copier coller
    Par mcdonald dans le forum Général Python
    Réponses: 4
    Dernier message: 29/01/2006, 13h38
  2. probleme avec un fichier
    Par elghadi_mohamed dans le forum C
    Réponses: 2
    Dernier message: 02/01/2006, 14h02
  3. [ XSLT ] probleme avec generate-id()
    Par Pi2 dans le forum XSL/XSLT/XPATH
    Réponses: 12
    Dernier message: 02/11/2005, 12h11
  4. probleme avec un fichier .dfm
    Par lestat1859 dans le forum C++Builder
    Réponses: 5
    Dernier message: 31/08/2005, 18h02
  5. [VB.NET] Probleme avec les fichiers!!
    Par ludovic85 dans le forum Windows Forms
    Réponses: 2
    Dernier message: 20/01/2005, 17h12

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