class Record_Data
{
  public Record_Data(byte[] record_buffer)
  {
     try{
      java.io.DataInputStream dis = new java.io.DataInputStream(new java.io.ByteArrayInputStream(record_buffer));
      this.age = dis.readShort();
      this.id = dis.readInt();
      dis.readBytes(name);
    }catch(Exception e){
    }
  }
  short age;
  int id;
  byte[] name = new byte[20];
}