Java 查看Excel單元格背景填充色

依賴

<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi</artifactId>
    <version>3.17</version>
</dependency>

<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>3.15</version>
</dependency>

代碼:

import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.util.HSSFColor;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFColor;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;

public class ExcelTest3 {

    public static void main(String[] args) {

        ExcelTest3 excelTest3 = new ExcelTest3();
        Workbook workbook = excelTest3.getExcel("C:\\Users\\beawan\\Desktop\\test\\test.xlsx");
        excelTest3.analyzeExcel(workbook);

    }

    public Workbook getExcel(String filePath){
        Workbook wb=null;
        File file=new File(filePath);
        if(!file.exists()){
            System.out.println("文件不存在");
            wb=null;
        }
        else {
            String fileType=filePath.substring(filePath.lastIndexOf("."));//獲得後綴名
            try {
                InputStream is = new FileInputStream(filePath);
                if(".xls".equals(fileType)){
                    wb = new HSSFWorkbook(is);
                }else if(".xlsx".equals(fileType)){
                    wb = new XSSFWorkbook(is);
                }else{
                    System.out.println("格式不正確");
                    wb=null;
                }
            }catch (Exception e){
                e.printStackTrace();
            }
        }
        return wb;
    }

    public void analyzeExcel(Workbook wb){
        Sheet sheet=wb.getSheetAt(0);//讀取sheet(從0計數)
        int rowNum=sheet.getLastRowNum();//讀取行數(從0計數)
        for(int i=0;i<=rowNum;i++){
            Row row=sheet.getRow(i);//獲得行
            int colNum=row.getLastCellNum();//獲得當前行的列數
            for(int j=0;j<colNum;j++){
                Cell cell=row.getCell(j);//獲取單元格
                CellStyle cellStyle = cell.getCellStyle();
                // xls 03版
//                HSSFColor hssfColor = (HSSFColor) cellStyle.getFillForegroundColorColor();
//                String color = hssfColor.getHexString();
//                System.out.println(color);
                // xlsx 07版
                XSSFColor xssfColor = (XSSFColor) cellStyle.getFillForegroundColorColor();
                byte[] bytes = xssfColor.getRGB();
                for (int k = 0; k < bytes.length; k++) {
                    System.out.print(bytes[k] + "-");
                }
                System.out.println();

            }

        }
    }
}

03版爲例:
excel內容
在這裏插入圖片描述
輸出

FFFF:FFFF:0
9696:9696:9696
3333:3333:3333
3333:3333:3333
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章