excel导入搜集

原文:http://www.open-open.com/lib/view/open1437203159990.html

public static void getDataFromExcel(String filePath)
  {
    //String filePath = "E:\\123.xlsx";
    //判断是否为excel类型文件
    if(!filePath.endsWith(".xls")&&!filePath.endsWith(".xlsx"))
    {
      System.out.println("文件不是excel类型");
    }
    FileInputStream fis =null;
    Workbook wookbook = null;
    try
    {
      //获取一个绝对地址的流
        fis = new FileInputStream(filePath);
    }
    catch(Exception e)
    {
      e.printStackTrace();
    }
    try 
    {
      //2003版本的excel,用.xls结尾
      wookbook = new HSSFWorkbook(fis);//得到工作簿
       
    } 
    catch (Exception ex) 
    {
      //ex.printStackTrace();
      try
      {
        //2007版本的excel,用.xlsx结尾
        
        wookbook = new XSSFWorkbook(fis);//得到工作簿
      } catch (IOException e)
      {
        // TODO Auto-generated catch block
        e.printStackTrace();
      }
    }
    //得到一个工作表
    Sheet sheet = wookbook.getSheetAt(0);
    //获得表头
    Row rowHead = sheet.getRow(0);
    //判断表头是否正确
    if(rowHead.getPhysicalNumberOfCells() != 3)
    {
      System.out.println("表头的数量不对!");
    }
    //获得数据的总行数
    int totalRowNum = sheet.getLastRowNum();
    //要获得属性
    String name = "";
    int latitude = 0;
     //获得所有数据
    for(int i = 1 ; i <= totalRowNum ; i++)
    {
      //获得第i行对象
      Row row = sheet.getRow(i);
      //获得获得第i行第0列的 String类型对象
      Cell cell = row.getCell((short)0);
      name = cell.getStringCellValue().toString();
      //获得一个数字类型的数据
      cell = row.getCell((short)1);
      latitude = (int) cell.getNumericCellValue();
      System.out.println("名字:"+name+",经纬度:"+latitude);
    }
  }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值