classpatharchiveentry.java

来自「Java Bytecode Editor 是一个 JAVA 的字节码反汇编和修改」· Java 代码 · 共 76 行

JAVA
76
字号
/*
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public
    License as published by the Free Software Foundation; either
    version 2 of the license, or (at your option) any later version.
*/

package ee.ioc.cs.jbe.browser.config.classpath;

import javax.swing.tree.DefaultTreeModel;
import java.io.File;
import java.io.IOException;
import java.util.Enumeration;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;

/**
    Classpath entry for an archive.

    @author <a href="mailto:jclasslib@ej-technologies.com">Ingo Kegel</a>
    @version $Revision: 1.3 $ $Date: 2006/09/25 16:00:58 $
*/
public class ClasspathArchiveEntry extends ClasspathEntry {

    public FindResult findClass(String className) {

        File file = getFile();
        if (file == null) {
            return null;
        }
        className = className.replace('.', '/') + ".class";
        try {
            JarFile jarFile = new JarFile(file);
            JarEntry entry = jarFile.getJarEntry(className);
            if (entry != null) {
                FindResult findResult = new FindResult(this, file.getPath() + "!" + className);
                return findResult;
            }
        } catch (IOException e) {
        }

        return null;
    }

    public void mergeClassesIntoTree(DefaultTreeModel model, boolean reset) {

        File archive = getFile();
        if (archive == null) {
            return;
        }

        try {
            JarFile jarFile = new JarFile(archive);
            Enumeration enumr = jarFile.entries();
            while (enumr.hasMoreElements()) {
                JarEntry entry = (JarEntry)enumr.nextElement();
                if (!entry.isDirectory() && entry.getName().toLowerCase().endsWith(CLASSFILE_SUFFIX)) {
                    addEntry((stripClassSuffix(entry.getName())), model, reset);
                }
            }
        } catch (IOException ex) {
        }
    }

    private void addEntry(String path, DefaultTreeModel model, boolean reset) {

        String[] pathComponents = path.replace('\\', '/').split("/");
        ClassTreeNode currentNode = (ClassTreeNode)model.getRoot();
        for (int i = 0; i < pathComponents.length; i++) {
            String pathComponent = pathComponents[i];
            currentNode = addOrFindNode(pathComponent, currentNode, i < pathComponents.length - 1, model, reset);
        }
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?