error detecting rfid tags

vsathish:

String readString;    

if(readString == 16703301) // Here i can determine tag no only

You should probably be comparing String to a character string, not an integer constant:

       if(readString == "16703301")