private String getStringCellValue(Cell cell) //获取excel单元格数据内容中为字符串类型的数据
{
String strCell = "";
if(cell == null)
{
return "";
}else
//判断数据的类型
switch (cell.getCellType()){
case Cell.CELL_TYPE_NUMERIC: //数字
DataFormatter dataFormatter = new DataFormatter();