Registry / utility / asm-util

asm-util

JSON →
library9.9.1javamavenunverified

Utilities for ASM, a very small and fast Java bytecode manipulation framework, providing tools like ASMifier and Textifier.

<dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-util</artifactId> <version>9.9.1</version> </dependency>
INSTALL
IMPORT
SIG · ASM-UTIL
A
asm-util
utilityjavav9.9.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ASMifier
org.objectweb.asm.util.ASMifier

Example using ASMifier to print bytecode as ASM code

import org.objectweb.asm.util.ASMifier; import org.objectweb.asm.ClassReader; public class Example { public static void main(String[] args) throws Exception { ClassReader reader = new ClassReader("java.lang.Object"); ASMifier.main(new String[]{"-debug", "-nodebug", "java.lang.Object"}); } }
Debug
Known issues
breakingASM versions must match between asm-util and core asm library to avoid linkage errors.
fix
Ensure asm-util and asm have the same version number.
affects: >=9.0
Upgrade
Version history
9.9.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
22 hits · last 30 days
node
20
OpenAI (training)
2
Resources
asm-util — mvn dependency:get asm-util · libregistry