java用poi操作excel的时候,new XSSFWorkbook,总是报错?
PHP中文网
PHP中文网 2017-04-18 09:43:25
0
1
875

走到箭头那一步的时候,总是调到handlerMehtodInvoker.class 这里
为什么捕捉不到异常?

PHP中文网
PHP中文网

认证0级讲师

répondre à tous(1)
Peter_Zhu

En regardant votre code, il semble que ce que vous implémentez soit de lire des fichiers Excel. Le code est le suivant : La relation spécifique est liée à la version EXCEL supportée par votre POI.
liste publique<RackVo> importExcel (@File("upload")FileItem fileInput, erreur ErrorContext) {
List<RackVo>

    if (null == fileInput) {
        throw new ServiceException(ErrorCode.Params_Lost, "机柜导入文件");
    }
    Workbook wb = null;
    InputStream is = null;
    Sheet sheet = null;
    try {
        is = fileInput.getInputStream();
        wb = new XSSFWorkbook(is);
        sheet = wb.getSheet(sheetName);
    } catch (Exception e) {
        throw new ServiceException(ErrorCode.Upload_File_Error, "上传excel版本文件解析失败");
    } finally {
        if (is != null) {
            try {
                is.close();
            } catch (IOException e) {
            }
        }
    }

    if (sheet != null) {
        // 初始化Excel栏目
        List<CellMapping> mappingList = RackUtil.getModColumns(null);
        try {
            list = ExcelUtils.excel2bean(sheet, RackVo.class, mappingList);
        } catch (Exception e) {
            throw new ServiceException(ErrorCode.Upload_File_Error, "Excel解析失败");
        }
    } else {
        throw new ServiceException(ErrorCode.Upload_File_Error, "未找到模板对应sheet");
    }

    return list;
}

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal