because you are not getting the file data correctly
<<while(findFile.hasNextLine()){
data = findFile.nextLine();
saved_data = data;
}
>>
It should be replaced by
StringBuilder text = new StringBuilder();
while(findFile.hasNextLine()){
text.append( findFile.nextLine() );
}
saved_data = text.toString();