AndroidKiller里 JDGUI
这个对 循环如 for循环什么的 翻译 不对
JEB
这个对 循环如 for循环什么的 翻译 很精准
这个对 import导入类 如果是内部类的时候 会出现问题
如
import java.nio.channels.FileChannel$MapMode; //错误
这个在JDGUI 里翻译是
import java.nio.channels.FileChannel; //正确
import java.nio.channels.FileChannel.MapMode;
JEB 里
FileChannel$MapMode.READ_ONLY //错误
JDGUI 里
FileChannel.MapMode.READ_ONLY //正确
综上所述:
在有循环的时候 要以JEB为主要参考
其他的时候 貌似 JDGUI更准一点
最准 就是 smali了