Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
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
Â
Â
⇒ jarscan - JAR File Scanner
⇠Download JarAnalyzer Source Package
⇑ JarAnalyzer by Kirk Knoernschild
⇑⇑ Java/JAR Tools
2021-07-01, 2484👍, 0💬
Popular Posts:
Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with ...
Apache Commons Codec library provides implementations of common encoders and decoders such as Base64...
What is the jaxp\SourceValidator.jav aprovided in the Apache Xerces package? I have Apache Xerces 2....
commons-io-2.6-sources.j aris the source JAR file for Apache Commons IO 2.6, which is a library of u...
JasperReports, the world's most popular open source business intelligence and reporting engine and J...