Storage the text inside of the SD card to string

   var1 += Serial.write(myFile.read());   ////////  I try that but I just receive 111111111111

myFile.read() gets a character from the file. Serial.write() does something with that character and returns the number of bytes it dealt with. I can't imagine why you want to append that value to the end of a String. I also can't imagine why you are surprised that you get nothing but a string of ones.