Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
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 (309)
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/Configuration.java
package com.kirkk.analyzer; import java.util.*; public class Configuration { public static List ignorePackages; public static List ignoreJars; static { ResourceBundle filters = ResourceBundle.getBundle("com.kirkk.analyzer.framework.Filter"); String packageFilters = filters.getString("filter.packages"); ignorePackages = new ArrayList(); StringTokenizer packageTokenizer = new StringTokenizer(packageFilters, ";"); while (packageTokenizer.hasMoreTokens()) { String token = packageTokenizer.nextToken(); //System.out.println(token.substring(0, token.length() - 1)); ignorePackages.add(token.substring(0, token.length() - 1)); } String jarFilters = filters.getString("filter.jars"); ignoreJars = new ArrayList(); StringTokenizer jarTokenizer = new StringTokenizer(jarFilters, ";"); while (jarTokenizer.hasMoreTokens()) { String token = jarTokenizer.nextToken(); ignoreJars.add(token.substring(0, token.length())); } } public static void initialize(String packageFilter, String jarFilter) { if (packageFilter != null) { ignorePackages = new ArrayList(); StringTokenizer packageTokenizer = new StringTokenizer(packageFilter, ";"); while (packageTokenizer.hasMoreTokens()) { String token = packageTokenizer.nextToken(); //System.out.println(token.substring(0, token.length() - 1)); ignorePackages.add(token.substring(0, token.length() - 1)); } } if (jarFilter != null) { ignoreJars = new ArrayList(); StringTokenizer jarTokenizer = new StringTokenizer(jarFilter, ";"); while (jarTokenizer.hasMoreTokens()) { String token = jarTokenizer.nextToken(); ignoreJars.add(token.substring(0, token.length())); } } } }
⏎ com/kirkk/analyzer/Configuration.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, 5586👍, 0💬
Popular Posts:
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
JDK 17 jdk.localedata.jmod is the JMOD file for JDK 17 Localedata module. JDK 17 Locale Data module ...
How to download and install JDK (Java Development Kit) 1.4? If you want to write Java applications, ...
JDK 11 jdk.jconsole.jmod is the JMOD file for JDK 11 JConsole tool, which can be invoked by the "jco...
How to download and install mysql-connector-j-8.0.31 .zip?Connector/J Java library is a JDBC Driver ...