Get an image and its position from excel file using Apache POI

前端 未结 3 1591
日久生厌
日久生厌 2020-12-20 17:21

Is it possible to extract an image\'s information from an xls spreadsheet using Apache POI?

In one of my projects, I need to read some images from a .xls file. I can

3条回答
  •  有刺的猬
    2020-12-20 17:58

    And if you don`t want to use iterator (cause some times they are heavy)

    public List readDrawing(Workbook workbook) throws Exception {
        List list = workbook.getAllPictures();
    
        for (int i=0; i

提交回复
热议问题