SpringBoot导入文件格式校验

1.SpringBoot 导入EXCEL时格式校验

1.做EXCEL导入的时候,对于文件格式校验

//前端将文件上传到服务器,前端返回给我的文件地址
String filePath = jsonObject.getString("filePath");
//将得到的文件地址字符串截取最后4位并且将格式转换成小写
        String filePaths = filePath.substring(filePath.length()-4).toLowerCase();
        if (!filePaths.equals(".xls") & !filePaths.equals("xlsx")){
            return  ResponseStruct.failure(997,"文件格式不正确");
        }

之前导入导出的文章写在了博客园,里面还有很多文章,不太想迁移了,所以地址如下:
https://www.cnblogs.com/shxkey/
博客园地址:博客园地址

你可能感兴趣的:(SpringBoot导入文件格式校验)