multipartfile 非必传_上传文件方式由MultipartFile转到File

package com.sysware.customize.dantou.common.util;

import org.springframework.web.multipart.MultipartFile;

import javax.servlet.ServletOutputStream;

import javax.servlet.http.HttpServletResponse;

import java.io.*;

import java.net.URL;

import java.util.ArrayList;

import java.util.List;

import static com.sysware.task.util.ExportFileUtil.getTimeStamp;

public class FileUtil {

/**

* @description :上传文件方式:由Spring转到java

* @author : P2M.WBA

* @date : 2018/6/22 13:57

*/

public static File MultipartFileToFile(MultipartFile multiFile) {

// 获取文件名

String fileName = multiFile.getOriginalFilename();

// 获取文件后缀

String prefix = fileName.substring(fileName.lastIndexOf("."));

// 用当前时间作为文件名,防止生成的临时文件重复

try {

File file = File.createTempFile(System.currentTimeMillis() + "", prefix);

multiFile.transferTo(file);

return file;

} catch (Exception e) {

e.printStackTrace();

}

return null;

}

/**

* @description :删除文件

* @author : P2M.WBA

* @date : 2018/6/22 13:59

*/

public static void deleteFile(File... files) {

for (File file : files) {

if (file.exists()) {

file.delete();

}

}

}

/**

* 获取项目根路径(WebRoot)

*

* @return

*/

public static String getWebRootPath() {

ClassLoader classLoader = Thread.currentThread().getContextClassLoader();

if (classLoader == null) {

classLoader = ClassLoader.getSystemClassLoader();

}

// 获取到webroot里面的数据

URL url = classLoader.getResource("");

File rootFile = new File(url.getPath() + "/");

File webInfoDir = new File(rootFile.getParent() + "/");

String path = webInfoDir.getParent() + Constant.TEMPLATE_DOWNLOAD;

return path.replaceAll("\\\\", "/");

}

/**

* 获取路径下的所有文件

*

* @param path

* @return

*/

public static List getFiles(String path) {

List fileList = new ArrayList();

File file = new File(path);

if (file.isDirectory()) {

File[] files = file.listFiles();

for (File fileIndex : files) {

//如果这个文件是目录,则进行递归搜索

if (fileIndex.isDirectory()) {

getFiles(fileIndex.getPath());

} else {

//如果文件是普通文件,则将文件句柄放入集合中

fileList.add(fileIndex);

}

}

}

return fileList;

}

/**

* 获取路径下的所有文件名称(全路径)

*

* @param path

* @return

*/

public static List getFileName(String path) {

List fileList = new ArrayList();

File file = new File(path);

if (file.isDirectory()) {

File[] files = file.listFiles();

for (File fileIndex : files) {

//如果这个文件是目录,则进行递归搜索

if (fileIndex.isDirectory()) {

getFiles(fileIndex.getPath());

} else {

//如果文件是普通文件,则将文件句柄放入集合中

fileList.add(fileIndex.getName());

}

}

}

return fileList;

}

/**

* 下载

*

* @param file

* @param response

* @throws IOException

*/

public static void download(File file, HttpServletResponse response) throws IOException {

ServletOutputStream out = response.getOutputStream();

BufferedInputStream bis = null;

BufferedOutputStream bos = null;

try {

// 设置response参数,可以打开下载页面

response.reset();

response.setContentType("application/vnd.ms-excel;charset=utf-8");

response.setHeader("Content-Disposition", "attachment;filename=" + new String(file.getName().getBytes("GB2312"), "ISO_8859_1"));

bis = new BufferedInputStream(new FileInputStream(file));

bos = new BufferedOutputStream(out);

byte[] buff = new byte[2048];

int bytesRead;

while (-1 != (bytesRead = bis.read(buff, 0, buff.length))) {

bos.write(buff, 0, bytesRead);

}

} catch (final IOException e) {

throw e;

} finally {

if (bis != null) bis.close();

if (bos != null) bos.close();

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值