Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JarAnalyzer Source Code Files
Apache Ant Source Code Files are inside the JarAnalyzer source package
like JarAnalyzer-src-1.2.zip.
Unzip the source package and go to the "src" sub-directory,
you will see source code files.
Here is the list of Java source code files of the JarAnalyzer 1.2 in \Users\fyicenter\JarAnalyzer\src:
✍: FYIcenter.com
⏎ com/kirkk/analyzer/framework/bcelbundle/JarBuilderImpl.java
package com.kirkk.analyzer.framework.bcelbundle;
import java.util.*;
import com.kirkk.analyzer.framework.*;
import com.kirkk.analyzer.framework.jar.JarFile;
import com.kirkk.analyzer.framework.bcel.*;
import java.io.*;
import java.util.zip.ZipException;
public class JarBuilderImpl implements JarBuilder {
public Jar buildJar(JarFile jarFile, List ignorePackages) throws Exception {
Jar jar = new JarImpl(jarFile.getFileName());
while (jarFile.hasMoreClasses()) {
String className = jarFile.nextClass();
try {
BCELPublicClass javaClass = new BCELPublicClass(jarFile.getFileName(), className, ignorePackages);
String packageName = javaClass.getPackageName();
JarPackage javaPackage = null;
if(jar.containsPackage(packageName)) {
javaPackage = jar.getPackage(packageName);
} else {
javaPackage = new JarPackageImpl(packageName);
jar.addPackage(javaPackage);
}
javaPackage.addClass(javaClass);
}
catch(IOException e) {
e.printStackTrace();
}
}
jarFile.close();
return jar;
}
}
⏎ com/kirkk/analyzer/framework/bcelbundle/JarBuilderImpl.java
Or download all of them as a single archive file:
File name: JarAnalyzer-1.20-fyi.zip File size: 19949 bytes Release date: 2007-08-03 Download
⇐ Download JarAnalyzer Source Package
2021-07-01, ∼8684🔥, 0💬
Popular Posts:
Snappy-Java is a Java port of the "snappy", a fast C++ compresser/decompresser developed by Google. ...
JDK 11 jdk.internal.vm.ci.jmod is the JMOD file for JDK 11 Internal VM CI module. JDK 11 Internal VM...
This package is the backport of java.util.concurrent API, introduced in Java 5.0 and further refined...
JDK 17 java.xml.crypto.jmod is the JMOD file for JDK 17 XML (eXtensible Markup Language) Crypto modu...
commons-lang-1.0.1.jar is the JAR file for Apache Commons Lang 1.0.1, which provides a host of helpe...