集册 Java实例教程 提取Jar条目

提取Jar条目

欢马劈雪     最近更新时间:2020-01-02 10:19:05

491
提取罐子入口

//Licensed under the Apache License, Version 2.0 (the "License");

//package com.nowjava;

import java.io.File;

/**
n o w j a   v  a . c o m - 时  代  Java 提供 
**/

import java.io.IOException;


import java.util.jar.JarEntry;

import java.util.jar.JarInputStream;


public class Main {

    private static void extractEntry(File entryFile, JarInputStream jis,

            JarEntry entry, boolean deleteOnExit) throws IOException {

        File parent = new File(entryFile.getParent());

        if (!parent.exists())

            parent.mkdirs();

        //ResourceUtil.copy(jis, new FileOutputStream(entryFile));     

        entryFile.setLastModified(entry.getTime(
展开阅读全文