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 Error in Java 8+ JAR Files
Why am I getting an error from JarAnalyzer on JAR files generated by Java 8 and newer versions?
✍: FYIcenter.com
If you are using the JarAnalyzer 1.2 to analyze JAR files
generated by Java 8 and newer versions
you will get the following error:
> java -version java version "15" 2020-09-15 Java(TM) SE Runtime Environment (build 15+36-1562) Java HotSpot(TM) 64-Bit Server VM (build 15+36-1562, mixed mode, sharing) > runxmlsummary.bat /Users/fyicenter/jars Exception in thread "main" org.apache.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 15 at org.apache.bcel.classfile.Constant.readConstant(Constant.java:146) at org.apache.bcel.classfile.ConstantPool.<init>(ConstantPool.java:67) at org.apache.bcel.classfile.ClassParser.readConstantPool(ClassParser.java:222) at org.apache.bcel.classfile.ClassParser.parse(ClassParser.java:136) at com.kirkk.analyzer.framework.bcel.BCELClassFactory.getClass(Unknown Source) at com.kirkk.analyzer.framework.bcel.BCELPublicClass.<init>(Unknown Source) at com.kirkk.analyzer.framework.bcelbundle.JarBuilderImpl.buildJar(Unknown Source) at com.kirkk.analyzer.framework.bcelbundle.JarCollectionImpl.getJars(Unknown Source) at com.kirkk.analyzer.framework.bcelbundle.JarCollectionImpl.<init>(Unknown Source) at com.kirkk.analyzer.Analyzer.analyze(Unknown Source) at com.kirkk.analyzer.textui.XMLUISummary.createSummary(Unknown Source) at com.kirkk.analyzer.textui.XMLUISummary.instanceMain(Unknown Source) at com.kirkk.analyzer.textui.XMLUISummary.main(Unknown Source)
This is because the Apache BCEL library included in JarAnalyzer 1.2 is too old. It can not read class files generated by Java 8 and newer versions.
Solution -
1. Go to Apache Commons BCEL Website, and download bcel-6.5.0-bin.zip.
2. Unzip bcel-6.5.0-bin.zip and copy bcel-6.5.0.jar to JarAnalyzer "lib" sub-directory.
3. Update the runxmlsummary.bat script to replace bcel-5.2.jar with bcel-6.5.0.jar.
The ClassFormatException will go away.
⇒ Download JarAnalyzer Source Package
⇐ JarAnalyzer - Read XML Output
2021-07-01, ∼1594🔥, 0💬
Popular Posts:
JDK 11 jdk.internal.opt.jmod is the JMOD file for JDK 11 Internal Opt module. JDK 11 Internal Opt mo...
What Is poi-examples-5.2.3.jar? poi-examples-5.2.3.jar is one of the JAR files for Apache POI 5.2.3,...
jlGui is a music player for the Java platform. It is based on Java Sound 1.0 (i.e. JDK 1.3+). It sup...
commons-collections4-4.4 -sources.jaris the source JAR file for Apache Commons Collections 4.2, whic...
Apache Avalon began in 1999 as the Java Apache Server Framework and in late 2002 separated from the ...