91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JAVA如何實現上傳下載

發布時間:2021-07-05 16:50:21 來源:億速云 閱讀:153 作者:chen 欄目:大數據

本篇內容介紹了“JAVA如何實現上傳下載”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

  public class FileUtil {
	/**
	*
	* Description: 復制文件
	*
	 * [@param](https://my.oschina.net/u/2303379) srcFile 上傳文件
	 * [@param](https://my.oschina.net/u/2303379) filePath 保存文件地址
	* [@return](https://my.oschina.net/u/556800)
	* [@date](https://my.oschina.net/u/2504391) 2019/1/18
	*/
   public static void copyFile(MultipartFile srcFile, String filePath) throws Exception {
	  // 判斷是否上傳文件
	  if (srcFile == null || srcFile.isEmpty() || StringUtils.isBlank(filePath)) {
		 throw new NullPointerException("上傳文件為空");
	  }
	  InputStream inputStream = srcFile.getInputStream();
	  File file = new File(filePath);
	  if (!file.exists()) {
		 file.getParentFile().mkdirs();
	  }
	  FileOutputStream outputStream = new FileOutputStream(file);
	  try {
		 IOUtils.copy(inputStream, outputStream);
	  } finally {
		 IOUtils.closeQuietly(inputStream);
		 IOUtils.closeQuietly(outputStream);
	  }
   }
}




/**
 * Description: 從本地下載PDF
 *
 * [@param](https://my.oschina.net/u/2303379) fileName
 *            文件名
 * @return
 * @date 2018年02月01日
 */
public static boolean copyPdf(HttpServletRequest request, HttpServletResponse response, String filePath,
		String fileName) {
   File file = new File(filePath + fileName);
   // 文件不存在,直接返回
   if (!file.exists()) {
	  return false;
   }
   BufferedInputStream inputStream = null;
   BufferedOutputStream outputStream = null;
   try {
	  setDownLoadResponseHeader(request, response, fileName);
	  inputStream = new BufferedInputStream(new FileInputStream(file));
	  outputStream = new BufferedOutputStream(response.getOutputStream());
	  IOUtils.copy(inputStream, outputStream);
   } catch (IOException e) {
	  e.printStackTrace();
   } finally {
	  try {
		 if (inputStream != null) {
			inputStream.close();
		 }
		 if (outputStream != null) {
			outputStream.close();
		 }
	  } catch (IOException e) {
		 e.printStackTrace();
	  }
   }
   return true;
}

“JAVA如何實現上傳下載”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

同心县| 绵竹市| 德阳市| 台东市| 枣强县| 三都| 潜江市| 凤凰县| 阳泉市| 大足县| 寿宁县| 承德县| 平湖市| 奎屯市| 翁源县| 崇义县| 广安市| 宁晋县| 濮阳市| 尼木县| 兴安盟| 英山县| 清新县| 宁都县| 甘孜县| 子洲县| 锦屏县| 桂阳县| 绥江县| 宾阳县| 昌黎县| 定兴县| 贵德县| 无极县| 临夏市| 长岛县| 永济市| 横山县| 巫溪县| 托克托县| 桃园市|