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 "";
            }
        }
    }
  • 相关阅读:
    jQuery
    前端开发之JavaScript篇
    前端开发之css篇
    前端开发之html篇
    mysql续
    MySQL入门
    进程线程协程那些事儿
    Python之socket网络编程
    2016.6.24——vector<vector<int>>【Binary Tree Level Order Traversal】
    2016.6.21——Climbing Stairs
  • 原文地址:https://www.cnblogs.com/hjhsysu/p/5743824.html
Copyright © 2011-2022 走看看