您好,登錄后才能下訂單哦!
這篇“怎么使用Java實現多層文件夾壓縮功能”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“怎么使用Java實現多層文件夾壓縮功能”文章吧。
做一個多層文件夾壓縮包的釋放的工具。
創建一個類:UnZipDirectoryFrame
使用UnZipDirectoryFrame繼承JFrame構建窗體
壓縮包內會有多個文件夾,每個文件夾可能會有文件夾或是文件,為了解壓縮時能還原出文件夾的層次關系。
解壓縮包含子文件夾的文件夾方案和解壓縮全是文件的文件夾類似,區別在于如何找出包含子文件夾的文件夾的所有文件,并且構造ZipEntry時,不要有重名的情況。
package com.xiaoxuzhu; import java.awt.BorderLayout; import java.awt.EventQueue; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; import javax.swing.JButton; import javax.swing.JFileChooser; import javax.swing.JFrame; import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTable; import javax.swing.JTextField; import javax.swing.border.EmptyBorder; import javax.swing.filechooser.FileNameExtensionFilter; import javax.swing.table.DefaultTableModel; /** * Description: 多層文件夾壓縮包的釋放 * * @author xiaoxuzhu * @version 1.0 * * <pre> * 修改記錄: * 修改后版本 修改人 修改日期 修改內容 * 2022/5/4.1 xiaoxuzhu 2022/5/4 Create * </pre> * @date 2022/5/4 */ public class UnZipDirectoryFrame extends JFrame { /** * */ private static final long serialVersionUID = 7178478435446172846L; private JPanel contentPane; private JTextField chooseTextField; private JTable table; private File zipFile; /** * Launch the application. */ public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { public void run() { try { UnZipDirectoryFrame frame = new UnZipDirectoryFrame(); frame.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } }); } /** * Create the frame. */ public UnZipDirectoryFrame() { setTitle("多層文件夾壓縮包的釋放"); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setBounds(100, 100, 450, 300); contentPane = new JPanel(); contentPane.setBorder(new EmptyBorder(5, 5, 5, 5)); setContentPane(contentPane); contentPane.setLayout(new BorderLayout(0, 0)); JPanel choosePanel = new JPanel(); contentPane.add(choosePanel, BorderLayout.NORTH); chooseTextField = new JTextField(); choosePanel.add(chooseTextField); chooseTextField.setColumns(18); JButton chooseButton = new JButton("選擇壓縮文件"); chooseButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent arg0) { do_chooseButton_actionPerformed(arg0); } }); choosePanel.add(chooseButton); JPanel buttonPanel = new JPanel(); contentPane.add(buttonPanel, BorderLayout.SOUTH); JButton unzipButton = new JButton("開始解壓縮"); unzipButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent arg0) { do_unzipButton_actionPerformed(arg0); } }); buttonPanel.add(unzipButton); JScrollPane scrollPane = new JScrollPane(); contentPane.add(scrollPane, BorderLayout.CENTER); table = new JTable(); scrollPane.setViewportView(table); } protected void do_chooseButton_actionPerformed(ActionEvent arg0) { JFileChooser fileChooser = new JFileChooser(); fileChooser.setFileFilter(new FileNameExtensionFilter("文本文件", "zip")); fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY); int result = fileChooser.showOpenDialog(this); if (result == JFileChooser.APPROVE_OPTION) { zipFile = fileChooser.getSelectedFile(); chooseTextField.setText(zipFile.getAbsolutePath()); } } protected void do_unzipButton_actionPerformed(ActionEvent arg0) { DefaultTableModel model = (DefaultTableModel) table.getModel(); model.setColumnIdentifiers(new Object[] { "序號", "文件名" }); List<String> list = new ArrayList<String>(); try { unzip(zipFile, list); for (int i = 0; i < list.size(); i++) { model.addRow(new Object[] { i + 1, list.get(i) }); } table.setModel(model); JOptionPane.showMessageDialog(this, "解壓縮完成"); } catch (IOException e) { e.printStackTrace(); } } private static void unzip(File zipFile, List<String> list) throws IOException { // 利用用戶選擇的ZIP文件創建ZipInputStream對象 ZipInputStream in = new ZipInputStream(new FileInputStream(zipFile)); ZipEntry entry; while ((entry = in.getNextEntry()) != null) {// 遍歷所有ZipEntry對象 if (!entry.isDirectory()) {// 如果是文件則創建并寫入 File tempFile = new File(zipFile.getParent() + File.separator + entry.getName()); list.add(tempFile.getName());// 增加文件名 new File(tempFile.getParent()).mkdirs();// 創建文件夾 tempFile.createNewFile();// 創建新文件 FileOutputStream out = new FileOutputStream(tempFile); int b; while ((b = in.read()) != -1) {// 寫入數據 out.write(b); } out.close();// 釋放資源 } } in.close(); } }
解壓縮成功:
以上就是關于“怎么使用Java實現多層文件夾壓縮功能”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。