Ejemplo n.º 1
0
 /**
  * Constructor
  *
  * @param offset the offset in the raw file
  * @param f the excel 97 biff file
  * @param d the data record
  */
 public Record(byte[] d, int offset, File f)
 {
     code   = IntegerHelper.getInt(d[offset], d[offset + 1]);
     length = IntegerHelper.getInt(d[offset + 2], d[offset + 3]);
     file   = f;
     file.skip(4);
     dataPos = f.getPos();
     file.skip(length);
     type = Type.getType(code);
 }