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, ∼1262🔥, 0💬
Popular Posts:
commons-lang-1.0.1.jar is the JAR file for Apache Commons Lang 1.0.1, which provides a host of helpe...
maven-settings-builder-3 .8.6.jaris the JAR file for Apache Maven 3.8.6 Settings Builder module. Apa...
ANTLR is a powerful parser generator for multiple programming languages including Java. ANTLR contai...
GJT (Giant Java Tree) implementation of XML Pull Parser. JAR File Size and Download Location: File n...
What Is javaws.jar in JRE (Java Runtime Environment) 8? javaws.jar in JRE (Java Runtime Environment)...