i have an excel file that have 2 cell that value of them have this 

cell 1 : azizkhani

cell 2:007596819379

format of cells is string (text)

but when i  read cell value in apache poi cell type in cell 2 is numeric

i want to read string value of them

for solve this prolem will write this line before reading cell value;

 

cell.setCellType(Cell.CELL_TYPE_STRING);

 

return cell.getStringCellValue();