Here you can find the source of deserializeInt(DataInputStream din)
public static int deserializeInt(DataInputStream din) throws IOException
//package com.java2s; import java.io.*; public class Main { public static int deserializeInt(DataInputStream din) throws IOException { return din.readInt(); }//w w w .j a v a 2 s.c o m }