FileUtils_下载小应用

FileExportUtils

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.PageContext;

public class FileExportUtils {
	
	private static HttpServletRequest excelRequest = null;
	private static HttpServletResponse excelResponse = null;
	private static FileOutputStream fileOut;
	
	public FileExportUtils(PageContext context) {
		this.excelRequest = (HttpServletRequest) context.getRequest();
		this.excelResponse = (HttpServletResponse) context.getResponse();
	}
	
	public FileExportUtils(HttpServletRequest request,
			HttpServletResponse response) {
		excelRequest = request;
		excelResponse = response;
	}
	
	public void outputTxt(String excelName, String resultStr) {
		//String realPath = "c:\\"+excelName+".xls";
		String realPath = getExcelRealPath(excelName);
		writerFileStream(realPath,resultStr);
		downloadFile(excelName);
	}
	
	private static String getExcelRealPath(String excelName) {
		String realPath = excelRequest.getRealPath("/UploadFile");
		File excelFile = new File(realPath);
		if(!excelFile.exists()) {
			excelFile.mkdirs();
		}
		excelName = realPath+ "\\" + excelName+".txt";
		return  excelName;
	} 
	
	private static void downloadFile(String strfileName) {
		try {
			// 获得ServletContext对象
			if(excelFileNotFund(strfileName)) {
				throw new IllegalArgumentException("File=["+strfileName+"] not fund file path");
			}
			// 取得文件的绝对路径
			File excelFile = getExcelDownloadPath(strfileName);
			putResponseStream(strfileName, excelFile);
		} catch (IOException e) {
			e.printStackTrace();
		} 
	}
	
	/**
	 * 
	 * @param strfileName : 文件名称
	 * @param excelName  : 文件的相对路径或绝对路径
	 * @throws UnsupportedEncodingException
	 * @throws FileNotFoundException
	 * @throws IOException
	 */
	private static void putResponseStream(String strfileName, File excelName)
			throws UnsupportedEncodingException, FileNotFoundException,
			IOException {
		strfileName = URLEncoder.encode(strfileName, "UTF-8");
		excelResponse.setHeader("Content-disposition","attachment; filename=" + strfileName+".txt");
		excelResponse.setContentLength((int) excelName.length());
//		excelResponse.setContentType("application/x-download");
//		excelResponse.setContentType("application/vnd.ms-Excel");
		excelResponse.setContentType("application/x-msdownload");
		byte[] buffer = new byte[4096];
		int i = 0;
		FileInputStream fis = new FileInputStream(excelName);
		while ((i = fis.read(buffer,0,4096)) > 0) {
			JspWriter out = null;
			excelResponse.getOutputStream().write(buffer, 0, i);
		}
		excelResponse.flushBuffer();
	}
	
	//用传入参数的判断
	private static boolean excelFileNotFund(String strfileName) {
		return strfileName ==  null|| strfileName.equals("");
	}
	
	public static File getExcelDownloadPath(String excelName) {
		String realPath = excelRequest.getRealPath("/UploadFile");
		excelName = realPath+ "\\" + excelName+".txt";
		File excelFile = new File(excelName);
		return  excelFile;
	}
	
	/**
	 * 输入当前WorkBook为下载临时文件记录
	 * 
	 * @param excelName
	 */
	public void writerFileStream(String excelName,String resultStr) {
		try {
			fileOut = new FileOutputStream(excelName);
			fileOut.write(resultStr.getBytes());
		} catch (FileNotFoundException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} finally {
			try {
				fileOut.flush();
				fileOut.close();
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
	}
	
	public static void main(String[] args) {
		//FileOutputStream fis = new FileOutputStream();
	}
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,您想了解在 Spring Boot 中如何实现文件上传和下载功能,对吧?那么,我给您简单介绍一下。 首先,在 Spring Boot 中实现文件上传和下载功能,需要用到 Commons FileUpload 和 Commons IO 这两个工具包。您可以在 Maven 中添加以下依赖: ```xml <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.8.0</version> </dependency> ``` 接下来,我们来看一下文件上传的实现。在 Spring Boot 中,我们可以使用 MultipartFile 类来接收上传的文件。在处理上传请求时,我们需要先判断请求是否为文件上传请求,如果是,则使用 MultipartFile 类来接收上传的文件,并将文件保存到指定的目录中。 ```java @PostMapping("/upload") public String upload(@RequestParam("file") MultipartFile file) throws IOException { if (!file.isEmpty()) { // 获取文件名 String fileName = file.getOriginalFilename(); // 构建文件保存的路径 String filePath = "D:/upload/"; // 创建文件对象 File dest = new File(filePath + fileName); // 判断目标文件所在的目录是否存在,如果不存在则创建目录 if (!dest.getParentFile().exists()) { dest.getParentFile().mkdirs(); } // 保存文件 file.transferTo(dest); return "上传成功!"; } return "上传失败!"; } ``` 接下来,我们来看一下文件下载的实现。在 Spring Boot 中,我们可以使用 ResponseEntity 类来将文件以流的形式返回给前端。 ```java @GetMapping("/download") public ResponseEntity<byte[]> download() throws IOException { // 构建文件对象 File file = new File("D:/upload/test.txt"); // 文件不存在 if (!file.exists()) { return ResponseEntity.notFound().build(); } // 构建文件下载的响应头 HttpHeaders headers = new HttpHeaders(); headers.setContentDispositionFormData("attachment", file.getName()); headers.setContentType(MediaType.APPLICATION_OCTET_STREAM); // 使用 FileUtils 工具类将文件转换成字节数组 byte[] bytes = FileUtils.readFileToByteArray(file); // 返回响应实体对象 return new ResponseEntity<>(bytes, headers, HttpStatus.OK); } ``` 以上就是 Spring Boot 中实现文件上传和下载的基本步骤。需要注意的是,这只是一个简单的示例,实际应用中还需要进行参数校验、异常处理等其他操作。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值