java读取Excel代码

参考自:


https://blog.csdn.net/zhaols11/article/details/22191283?ops_request_misc=&request_id=&biz_id=102&utm_term=java%E8%AF%BB%E5%8F%96excel%E6%97%B6%E6%8A%A5%E9%94%99%EF%BC%9AException%20in%20th&utm_medium=distribute.pc_search_result.none-task-blog-2~all~sobaiduweb~default-0-22191283

亲测,OK!

 

import java.io.*;    

import jxl.*;
import jxl.read.biff.BiffException;
//import jxl.read.biff.*;
public class ReadExcel
{
        public static void main(String args[]) throws BiffException, IOException
        {
            String filepath = "D:\\交叉验证平台\\测试报告\\DRU出厂测试报告8.xls";
            File xlsFile = new File(filepath);
            // 获得工作簿对象
            Workbook workbook = Workbook.getWorkbook(xlsFile);
            // 获得所有工作表
            Sheet[] sheets = workbook.getSheets();
            // 遍历工作表
            if (sheets != null)
             {
                for (Sheet sheet : sheets)
                 {
                    // 获得行数
                    int rows = sheet.getRows();
                    // 获得列数
                    int cols = sheet.getColumns();
                    // 读取数据
                    for (int row = 0; row < rows; row++)
                  {
                        for (int col = 0; col < cols; col++)
                         {
                                 Cell cell = sheet.getCell(col, row);   
                  System.out.print(cell.getContents() + " ");   
                         }
                     System.out.println();
                  }
                }
            }
          workbook.close();
      }
}

如报错:Exception in thread "main" jxl.read.biff.BiffException:unable to recongnize olestream
降低Excel版本即可

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值