zoukankan      html  css  js  c++  java
  • Java——jxl读取Excel文件

    1.创建文件流,打开EXCEL文件(jxi不支持.xlsx文件,支持.xls)

    FileInputStream excelFile = new FileInputStream(excelPath);
    Workbook workbook = Workbook.getWorkbook(excelFile);

    2.切换到对应文件名

    Sheet excelSheet = workbook.getSheet(sheetName);

    3.获取实际行数和列数

    int rows = excelSheet.getRows();//行数
    Cell[] cell = excelSheet.getRow(0);// 获得第一行的所有单元格
    int columnNum = cell.length; // 单元格的个数 值 赋给 列数

    4.读取数据

    public static String ReadData(Sheet excelSheet, int row, int col){
            try{
                String CellData= "";
                Cell cell = excelSheet.getRow(row)[col];
                CellData = cell.getContents().toString(); 
                return CellData;
            }catch(Exception e){
                return "";
            }
        }

    示例:

    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import jxl.Cell;
    import jxl.Sheet;
    import jxl.Workbook;
    import jxl.read.biff.BiffException;
    public class jxlExcel {
        
        public static void main(String[] args) throws IOException {
            String excelPath = "F:\login.xls";
            String sheetName = "001";
            try{
                FileInputStream excelFile = new FileInputStream(excelPath);
                Workbook workbook = Workbook.getWorkbook(excelFile);
                Sheet excelSheet = workbook.getSheet(sheetName);
                int rows = excelSheet.getRows();//行数
                Cell[] cell = excelSheet.getRow(0);// 获得第一行的所有单元格
                int columnNum = cell.length; // 单元格的个数 值 赋给 列数
            
                for(int row = 0;row< rows; ++row){
                    for (int col =0; col < columnNum; ++col){
                        System.out.print(ReadData(excelSheet, row, col) + ' ');
                        if(col ==1)
                            System.out.println();
                    }
                }
                workbook.close();
            }catch (FileNotFoundException e ){
                System.out.println("找不到该文件");
            } catch (BiffException e) {
                e.printStackTrace();
            }
        }
        
        public static String ReadData(Sheet excelSheet, int row, int col){
            try{
                String CellData= "";
                Cell cell = excelSheet.getRow(row)[col];
                CellData = cell.getContents().toString(); 
                return CellData;
            }catch(Exception e){
                return "";
            }
        }
    }
  • 相关阅读:
    (五)Ajax修改购物车单品数量
    (四)加入购物车和购物车操作
    flask blueprint
    2.1.2 BCD码
    2.1.1进位计数制
    1.2.3 计算机系统的层次结构
    flask的宏 macro
    计算机组成原理习题
    flask模版继承和include
    flask自定义过滤器
  • 原文地址:https://www.cnblogs.com/hjhsysu/p/5743824.html
Copyright © 2011-2022 走看看