中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

米脂县| 高要市| 彭泽县| 宁化县| 彭水| 应用必备| 巧家县| 隆林| 汨罗市| 聂荣县| 克拉玛依市| 阿拉善右旗| 镇雄县| 江孜县| 楚雄市| 邹平县| 东安县| 治县。| 婺源县| 泊头市| 吴旗县| 三亚市| 百色市| 赤城县| 定日县| 定南县| 东乡族自治县| 襄垣县| 德阳市| 保定市| 信宜市| 鹿泉市| 闸北区| 仙桃市| 聂拉木县| 阳原县| 盱眙县| 福鼎市| 五指山市| 乌鲁木齐县| 托克托县|