decompile_class
Decompile Java class source code from running JVM processes to analyze and understand application behavior during runtime debugging.
Instructions
反编译指定类的源码
Args:
pid (str): 进程ID,使用字符串形式(如:"12345")
class_pattern (str): 类名表达式匹配
method_pattern (Optional[str]): 可选的方法名表达式
Returns:
Dict: 包含反编译源码的字典(暂未实现)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pid | No | ||
| class_pattern | No | ||
| method_pattern | No |