java文件上传
1:通过fileUrl文件路径上传String filePath = map.get(“fileUrl”).toString();if (StringUtils.isBlank(filePath)) {throw new TRetailBizException(“上传文件地址不能为空”);}File file = new File(filePath);if (!file.exists()) {//创建临时目录file.mkdir();}HSSFWorkbook workbook = ne



