Bonjour,
J'ai un tableau de String : chaque case de ce tableau contient deux caractère representant un valeur hexadecimal
ex:
tab[0] = "A0"
tab[1] = "FF"
...
j'ai un autre tableau de type char (tabChar[100])
=> comment faire pour convertir les valeurs hexa en binaire et les mettre dans mon tableau tabChar ?
ex:
tabChar[0] = 0xA0
tabChar[1] = 0xFF
...
j'ai un autre probleme, mon tableau de char est assez grand : tabChar = new char[33554432];
=> ça ne fonctionne pas : java.lang.OutOfMemoryError: Java heap space
=> comment faire ?
Partager