ffffff2.
Código:
Lo que muestra:package leerbmp; import java.io.BufferedInputStream; import java.io.DataInputStream; import java.io.EOFException; import java.io.FileInputStream; import java.io.IOException; public class LeerBmp { public static void main(String[] args) { int contador=0; try{ FileInputStream archivo = new FileInputStream("prueba.bmp"); BufferedInputStream buff = new BufferedInputStream(archivo); DataInputStream datos = new DataInputStream(buff); try{ while (true){ int in = datos.readByte(); System.out.printf("%d - %h - %d \n",contador++, in,in); } }catch(EOFException eof){ buff.close(); } }catch(IOException e){ System.out.println("Error " + e.toString()); } } }
Contador - Hexadecimal - Decimal
0 - 42 - 66
1 - 4d - 77
2 - fffffff2 - -14
3 - 6 - 6
4 - 0 - 0
5 - 0 - 0
Saludos y gracias.