0

我用 Python 编写了一个脚本来清理 jar 档案(我知道我需要使用Class Dependency Analyzer的类)这是我的脚本:

def deleteJarEntrie(pJarPath) :

    # Dictionary contains className of jar file for key 
    # and a list of class for value
    for key in myDict.keys():

        zin = zipfile.ZipFile (pJarPath+key, 'r')
        zout = zipfile.ZipFile (key, 'w')

        # for each entry in zip file
        for item in zin.infolist():

            # if the className of the file finished by one “/” it is a directory 
            # thus I do not reiterate values of the dictionary  
            if (item.filename[-1:] != "/"):

                # For each value of my dictionary (the value are the classes which I need)
                for value in myDict.get(key):
                    buffer = zin.read(item.filename)
                    className = item.filename.split("/")
                    className = className[len(className)-1]
                    if (item.filename == value):
                        zout.writestr(item, buffer)
                        print item.filename
        zout.close()
        zin.close()'

问题是 item.filename 永远不会以类文件名作为值,item.filename 只接受目录的值,但它可以采用 MANIFEST.MF 的值。

例如 :

我在 /org/test/myClass.class 有一堂课

-> item.filename = /org/test/

我在 /META-INF/MANIFEST.MF 中有一个清单

-> item.filename = /META-INF/MANIFEST.MF

我不明白为什么我看不到类文件...

感谢您的回答,如果我的英语不正确,我们深表歉意。

4

0 回答 0