Tokenizer tok = new Tokenizer(fMuestra);
tok.whitespaceChars(58, 255);
tok.wordChars(48, 57);
valorMax = tok.readFloat();
valorMin = tok.readFloat();
nMuestras = tok.readInt();
velozMuestreo = tok.readInt();
int longitud = nMuestras * 2;
byte buf[] = new byte[longitud];
fMuestra.skip(1L);
int num = fMuestra.read(buf, 0, longitud);