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

溫馨提示×

溫馨提示×

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

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

java項目中如何實現壓縮文件與刪除文件

發布時間:2020-11-07 17:19:09 來源:億速云 閱讀:412 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關java項目中如何實現壓縮文件與刪除文件,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

壓縮文件 :toZip(String srcDir, OutputStream out,boolean KeepDirStructure)

刪除文件:deleteFolder(File folder)

/**
	 * 壓縮成ZIP 方法1
	 * 
	 * @param srcDir
	 *      壓縮文件夾路徑
	 * @param out
	 *      壓縮文件輸出流
	 * @param KeepDirStructure
	 *      是否保留原來的目錄結構,true:保留目錄結構;
	 *      false:所有文件跑到壓縮包根目錄下(注意:不保留目錄結構可能會出現同名文件,會壓縮失敗)
	 * @throws RuntimeException
	 *       壓縮失敗會拋出運行時異常
	 */
	protected void toZip(String srcDir, OutputStream out,
			boolean KeepDirStructure) throws RuntimeException {
		long start = System.currentTimeMillis();
		ZipOutputStream zos = null;
		try {
			zos = new ZipOutputStream(out);
			File sourceFile = new File(srcDir);
			compress(sourceFile, zos, sourceFile.getName(), KeepDirStructure);
			long end = System.currentTimeMillis();
			System.out.println("壓縮完成,耗時:" + (end - start) + " ms");
		} catch (Exception e) {
			throw new RuntimeException("zip error from ZipUtils", e);
		} finally {
			if (zos != null) {
				try {
					zos.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}
	}
	/**
	 * 遞歸壓縮方法
	 * 
	 * @param sourceFile
	 *      源文件
	 * @param zos
	 *      zip輸出流
	 * @param name
	 *      壓縮后的名稱
	 * @param KeepDirStructure
	 *      是否保留原來的目錄結構,true:保留目錄結構;
	 *      false:所有文件跑到壓縮包根目錄下(注意:不保留目錄結構可能會出現同名文件,會壓縮失敗)
	 * @throws Exception
	 */
	private static void compress(File sourceFile, ZipOutputStream zos,
			String name, boolean KeepDirStructure) throws Exception {
		byte[] buf = new byte[BUFFER_SIZE];
		if (sourceFile.isFile()) {
			// 向zip輸出流中添加一個zip實體,構造器中name為zip實體的文件的名字
			zos.putNextEntry(new ZipEntry(name));
			// copy文件到zip輸出流中
			int len;
			FileInputStream in = new FileInputStream(sourceFile);
			while ((len = in.read(buf)) != -1) {
				zos.write(buf, 0, len);
			}
			// Complete the entry
			zos.closeEntry();
			in.close();
		} else {
			File[] listFiles = sourceFile.listFiles();
			if (listFiles == null || listFiles.length == 0) {
				// 需要保留原來的文件結構時,需要對空文件夾進行處理
				if (KeepDirStructure) {
					// 空文件夾的處理
					zos.putNextEntry(new ZipEntry(name + "/"));
					// 沒有文件,不需要文件的copy
					zos.closeEntry();
				}
			} else {
				for (File file : listFiles) {
					// 判斷是否需要保留原來的文件結構
					if (KeepDirStructure) {
						// 注意:file.getName()前面需要帶上父文件夾的名字加一斜杠,
						// 不然最后壓縮包中就不能保留原來的文件結構,即:所有文件都跑到壓縮包根目錄下了
						compress(file, zos, name + "/" + file.getName(),
								KeepDirStructure);
					} else {
						compress(file, zos, file.getName(), KeepDirStructure);
					}
				}
			}
		}
	}
/**
	 * 刪除文件夾
	 * 
	 * @param folder
	 */
	protected void deleteFolder(File folder) {
		// 待刪除文件路徑
		String path = this.getClass().getResource("/").getPath().replace(
				"WEB-INF/classes/", "postFile/");
		if (folder.isDirectory()) {
			File[] files = folder.listFiles();
			for (int i = 0; i < files.length; i++) {
				deleteFolder(files[i]);
			}
			// 非當前目錄,刪除
			if (!folder.getAbsolutePath().equalsIgnoreCase(path)) {
//				// 只刪除在7天前創建的文件
//				if (canDeleteFile(folder)) {
//					if (folder.delete()) {
//						System.out.println("文件夾" + folder.getName() + "刪除成功!");
//					} else {
//						System.out.println("文件夾" + folder.getName()
//								+ "刪除失敗!此文件夾內的文件可能正在被使用");
//					}
//				}
				//只要是空的文件夾就刪除不區分幾天前創建
				if (folder.delete()) {
					System.out.println("文件夾" + folder.getName() + "刪除成功!");
				} else {
					System.out.println("文件夾" + folder.getName()
							+ "刪除失敗!此文件夾內的文件可能正在被使用");
				}
			}
		} else {
			deleteFile(folder);
		}
	}
	/**
	 * 判斷文件是否能夠被刪除
	 */
	protected boolean canDeleteFile(File file) {
		Date fileDate = getfileDate(file);
		Date date = new Date();
		long time = (date.getTime() - fileDate.getTime()) / 1000 / 60 / 60 / 24;// 當前時間與文件創建時間的間隔天數
		// 大于7天可刪除,小于10天不刪除
		if (time > 10) {
			return true;
		} else {
			return false;
		}
//		return true;
	}
	/**
	 * 獲取文件最后的修改時間
	 * 
	 * @param file
	 * @return
	 */
	protected Date getfileDate(File file) {
		long modifiedTime = file.lastModified();
		Date d = new Date(modifiedTime);
		return d;
	}
	/**
	 * 刪除文件
	 * 
	 * @param file
	 */
	protected void deleteFile(File file) {
		try {
			if (file.isFile()) {
				// 刪除符合條件的文件
				if (canDeleteFile(file)) {
					if (file.delete()) {
						System.out.println("文件" + file.getName() + "刪除成功!");
					} else {
						System.out.println("文件" + file.getName()
								+ "刪除失敗!此文件可能正在被使用");
					}
				} else {
				}
			} else {
				System.out.println("沒有可以刪除的文件了");
			}
		} catch (Exception e) {
			System.out.println("刪除文件失敗========");
			e.printStackTrace();
		}
	}

以上就是java項目中如何實現壓縮文件與刪除文件,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

甘洛县| 涟源市| 望江县| 宜黄县| 太和县| 谢通门县| 都江堰市| 金华市| 留坝县| 吉水县| 图木舒克市| 宁乡县| 漠河县| 绥江县| 靖安县| 维西| 额敏县| 梧州市| 应用必备| 都昌县| 林甸县| 菏泽市| 栖霞市| 思茅市| 祥云县| 洛川县| 新安县| 达州市| 商丘市| 舟山市| 定兴县| 迁安市| 大英县| 桓台县| 若羌县| 阳山县| 乌兰察布市| 新沂市| 康定县| 介休市| 天峨县|