溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android中怎么實(shí)現(xiàn)反編譯

發(fā)布時(shí)間:2021-06-28 15:12:29 來源:億速云 閱讀:170 作者:Leah 欄目:移動開發(fā)

這篇文章給大家介紹Android中怎么實(shí)現(xiàn)反編譯,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

一:所需工具(點(diǎn)擊各自連接進(jìn)入下載頁面):

AXMLPrinter2.jar

dex2jar:

查看Jar包的GUI工具

二,開始行動

1.用AXMLPrinter2.jar查看apk中的布局xml文件:

將apk文件(為了方便起見放到tools目錄里)用WinRAR等工具打開,將res/layout/main.xml解壓出來(也還是放在tools目錄里哦)

打開main.xml文件,內(nèi)容如下(一堆天文):

Android中怎么實(shí)現(xiàn)反編譯

這時(shí)候AXMLPrinter2.jar派上用場了,打開cmd終端,一直進(jìn)入到tools目錄下,輸入如下命令:

java -jar AXMLPrinter2.jar main.xml > main.txt. (如下圖所示)

Android中怎么實(shí)現(xiàn)反編譯

2:通過dex2jar工具進(jìn)行反編譯。

把a(bǔ)pk中的class.dex拷貝到dex2jar.bat所在目錄。運(yùn)行dex2jar.bat class.dex,將會在其文件夾下生成classes.dex.dex2jar.jar。

Android中怎么實(shí)現(xiàn)反編譯

3、可以將jar文件重新命名后拷貝到GUI文件夾下,運(yùn)行JD-GUI工具(它是綠色無須安裝的),打開上面的jar文件,即可看到源代碼。

Android中怎么實(shí)現(xiàn)反編譯

<?xml version="1.0" encoding="utf-8"?>     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"          android:orientation="vertical"          android:layout_width="fill_parent"          android:layout_height="fill_parent"          >     <WebView          android:id="@+id/apk_web"          android:layout_height="wrap_content"          android:layout_width="fill_parent"           />     </LinearLayout>   <?xml version="1.0" encoding="utf-8"?>     <LinearLayout       xmlns:android="http://schemas.android.com/apk/res/android"          android:orientation="1"          android:layout_width="-1"          android:layout_height="-1"          >          <WebView              android:id="@7F050000"              android:layout_width="-1"              android:layout_height="-2"              >          </WebView>     </LinearLayout>

關(guān)于Android中怎么實(shí)現(xiàn)反編譯就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI