java 上傳 下載檔案工具類

fhadmin發表於2022-02-28
 
package com.fh.util;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import org.apache.commons.io.FileUtils;
import org.springframework.web.multipart.MultipartFile;
/**
 * 說明:上傳檔案
 * 作者:FH Admin
 * 官網:fhadmin.cn
 */
public class FileUpload {
	/**上傳檔案
	 * @param file 			//檔案物件
	 * @param filePath		//上傳路徑
	 * @param fileName		//檔名
	 * @return  檔名
	 */
	public static String fileUp(MultipartFile file, String filePath, String fileName){
		String extName = ""; // 副檔名格式:
		try {
			if (file.getOriginalFilename().lastIndexOf(".") >= 0){
				extName = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf("."));
			}
			copyFile(file.getInputStream(), filePath, fileName+extName).replaceAll("-", "");
		} catch (IOException e) {
			System.out.println(e);
		}
		return fileName+extName;
	}
	
	/**
	 * 寫檔案到當前目錄的upload目錄中
	 * @param in
	 * @param fileName
	 * @throws IOException
	 */
	public static String copyFile(InputStream in, String dir, String realName)
			throws IOException {
		File file = mkdirsmy(dir,realName);
		FileUtils.copyInputStreamToFile(in, file);
		in.close();
		return realName;
	}
	
	
	/**判斷路徑是否存在,否:建立此路徑
	 * @param dir  檔案路徑
	 * @param realName  檔名
	 * @throws IOException 
	 */
	public static File mkdirsmy(String dir, String realName) throws IOException{
		File file = new File(dir, realName);
		if (!file.exists()) {
			if (!file.getParentFile().exists()) {
				file.getParentFile().mkdirs();
			}
			file.createNewFile();
		}
		return file;
	}
	
	
	/**下載網路圖片上傳到伺服器上
	 * @param httpUrl 圖片網路地址
	 * @param filePath	圖片儲存路徑
	 * @param myFileName  圖片檔名(null時用網路圖片原名)
	 * @return	返回圖片名稱
	 */
	public static String getHtmlPicture(String httpUrl, String filePath , String myFileName) {
		
		URL url;						//定義URL物件url
		BufferedInputStream in;			//定義輸入位元組緩衝流物件in
		FileOutputStream file;			//定義檔案輸出流物件file
		try {
			String fileName = null == myFileName?httpUrl.substring(httpUrl.lastIndexOf("/")).replace("/", ""):myFileName; //圖片檔名(null時用網路圖片原名)
			url = new URL(httpUrl);		//初始化url物件
			in = new BufferedInputStream(url.openStream());									//初始化in物件,也就是獲得url位元組流
			//file = new FileOutputStream(new File(filePath +"\\"+ fileName));
			file = new FileOutputStream(mkdirsmy(filePath,fileName));
			int t;
			while ((t = in.read()) != -1) {
				file.write(t);
			}
			file.close();
			in.close();
			return fileName;
		} catch (MalformedURLException e) {
			e.printStackTrace();
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
		return null;
		
	}
}
package com.fh.util;
import java.io.BufferedOutputStream;
import java.io.OutputStream;
import java.net.URLEncoder;
import javax.servlet.http.HttpServletResponse;
/**
 * 說明:下載檔案
 * 作者:FH Admin
 * 官網:fhadmin.cn
 */
public class FileDownload {
	/**
	 * @param response 
	 * @param filePath		//檔案完整路徑(包括檔名和副檔名)
	 * @param fileName		//下載後看到的檔名
	 * @return  檔名
	 */
	public static void fileDownload(final HttpServletResponse response, String filePath, String fileName) throws Exception{  
		byte[] data = FileUtil.toByteArray2(filePath);  
	    fileName = URLEncoder.encode(fileName, "UTF-8");  
	    response.reset();  
	    response.setHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");  
	    response.addHeader("Content-Length", "" + data.length);  
	    response.setContentType("application/octet-stream;charset=UTF-8");  
	    OutputStream outputStream = new BufferedOutputStream(response.getOutputStream());  
	    outputStream.write(data);  
	    outputStream.flush();  
	    outputStream.close();
	    response.flushBuffer();
	} 
}


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31558068/viewspace-2860097/,如需轉載,請註明出處,否則將追究法律責任。

相關文章