直接 .java 到 .smali 转换。可能的?

发布于 2024-10-27 03:52:19 字数 172 浏览 4 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遥远的她 2024-11-03 03:52:19

“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文