在运行时查看 class 字节码
View class bytecode at runtime
我已经通过 BCEL 动态地修补 class,并且我动态地重新加载它们 class。
我不确定我真正重新加载的是什么 class。
如何查看?
如何查看 class 字节码而不将其另存为文件?
谢谢。
I'm not sure what I am really reloading the class. How can I check it?
好吧,您可以在 class 的静态初始化程序中向 System.out
打印一条消息。如果打印了该消息,您将知道您的 class 已重新加载,并且(新)class 已初始化。
How can I view class bytecode without save it as file?
见Pretty printing a method in ASM Bytecode
Whether netbeans special instruments for it?
我不知道你在这里问什么...
我已经通过 BCEL 动态地修补 class,并且我动态地重新加载它们 class。 我不确定我真正重新加载的是什么 class。
如何查看?
如何查看 class 字节码而不将其另存为文件?
谢谢。
I'm not sure what I am really reloading the class. How can I check it?
好吧,您可以在 class 的静态初始化程序中向 System.out
打印一条消息。如果打印了该消息,您将知道您的 class 已重新加载,并且(新)class 已初始化。
How can I view class bytecode without save it as file?
见Pretty printing a method in ASM Bytecode
Whether netbeans special instruments for it?
我不知道你在这里问什么...