模板

function getfunc() {
    java.perform(function () {
        var class_name = java.use('你反编译需要拿到的类名');
        var methods=class_name.getDeclaredMethods();
        for(var j =0;j<methods.length;j++){
            console.log(methods[j])
            method_name=methods[j].getName()
            console.log(method_name)
        }
    })
}


相关文章:

  • 2022-02-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-05
  • 2022-02-18
猜你喜欢
  • 2021-07-13
  • 2022-01-29
  • 2021-10-01
  • 2021-08-17
  • 2021-10-16
相关资源
相似解决方案