直接 .java 到 .smali 转换。可能的?
我正在使用 baksmali/smali 工具。 但有时我需要将 .java 类编译为 .smali 文件。因此,我必须首先使用 Eclipse 对其进行编译,然后将 .APK 反汇编为一组 .smali 文件。
是否可以用一个工具直接将.java编译成.smali?
我自己找不到解决方案...
I'm working with baksmali/smali tools.
But sometimes I need to compile .java class to .smali file. So I've to first compile it with Eclipse and second disassemble the .APK to a set of .smali files.
Is it possible to directly compile .java into .smali with one single tool?
I couldn't find a solution myself...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“javac”或类似程序可用于将源代码转换为.class。
Android 的“dx”用于将 .class 转换为 Dalvik .dex。
其结果可以使用 Smali 工具进行处理。您应该能够直接从脚本调用所有这些。
"javac" or similar program can be used to convert the source code to .class.
Android's "dx" is used to convert .class to Dalvik .dex.
The result of that can be processed with the Smali tools. You should be able to invoke all of these directly from a script.