decompile_class
Decompile Java class bytecode into human-readable source code using a specified pattern. Analyze and monitor JVM processes to debug and understand application behavior.
Instructions
反编译指定类的源码
Input Schema
Name | Required | Description | Default |
---|---|---|---|
class_pattern | Yes | ||
method_pattern | No | ||
pid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"class_pattern": {
"title": "Class Pattern",
"type": "string"
},
"method_pattern": {
"default": null,
"title": "Method Pattern",
"type": "string"
},
"pid": {
"title": "Pid",
"type": "integer"
}
},
"required": [
"pid",
"class_pattern"
],
"title": "decompile_classArguments",
"type": "object"
}