Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

What is the earliest JDK required to use ASM?

asm JDK
0
Posted

What is the earliest JDK required to use ASM?

0

The org.objectweb.asm package should work with JDK 1.1, or even with JDK 1.0 if Type is not used. Indeed, this package only requires the following JDK classes and methods: • in java.io: InputStream, IOException (only in two constructors of ClassReader) • in java.lang.reflect: Method (only in Type) • in java.lang: • Object, String, StringBuffer • Long, Double, Float, Void, Byte, Boolean … • System.arraycopy • ClassLoader.getSystemClassLoader, ClassLoader.getSystemResourceAsStream (only in one constructor of ClassReader) The asm.util and asm.tree packages require JDK 1.2, since they use the List interface and the ArrayList class.

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123