Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在检查一些android程序,我想知道这些java文件中的任何类/函数都是无用的(例如,永远不会被调用,使用过)
有什么工具可以帮忙吗?我正在使用 Eclipse。
让我们看看以下链接可能对您有帮助:
对于 Java 工具,请参阅Java
您可以使用ProGuard。它会生成一份报告,告诉你这类事情。(他们主页“ProGuard 的使用”中的第三个项目符号是:“列出死代码,以便可以从源代码中删除它。”)我的猜测是几乎所有 Java 的收缩器/优化器工具都具有类似的功能。