예제 #1
0
 public BigtableData readObject() {
   int size = 0;
   try {
     size = in.read();
     System.out.println("size: " + size);
     byte[] tempchars = new byte[size];
     in.read(tempchars);
     BigtableData tt = BigtableData.parseFrom(tempchars);
     return tt;
   } catch (IOException e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
   }
   return null;
 }