反編譯 class和原java檔案的原始碼對比

2021-08-19 03:15:16 字數 1271 閱讀 4936

主要是對比字面型常量之間、變數之間以及兩者之間運算在編譯後的差異

源**:

int a=1+2;

system.out.println(a);

int b=10;

int c=20;

int d=a+b;

system.out.println(d);

.class檔案反編譯

int a = 3;

system.out.println(a);

int b=10;

int c=20;

int d=a+b;

system.out.println(d);

源**:

string str1 = "abcd"; // 直接賦值

string str2 = new string("1234"); // 使用標準的new呼叫構造方法

string str6="ab"+"cd";

string str7="ab";

string str8="cd";

string str9=str7+str8;

.class檔案反編譯

string str1 = "abcd";

string str2 = new string("1234");

string str6 = "abcd";

string str7 = "ab";

string str8 = "cd";

源**:

public class test02 

public static void main(string args)

.class檔案反編譯:

public class test02

public static void main(string args)

源**:

string s2 = "cd";

string ss = "ab" + s2;

.class檔案反編譯:

string s2 = "cd";
總結:

注意: 單獨的int a=10;但是a後面並沒有使用,編譯後還是會有int a=10;存在的

進一步結論:

不懂或者總結不全的地方,就自己敲**實踐一下吧!

java反編譯失敗以及反編譯工具選擇

現在一些公司可能會負責後期維護一些別的公司的專案,但是有些公司可能只給原始碼,不願意直接提供 價錢問題 但是開發公司的技術人員因為入行時間,工作背景,編碼風格以及使用技術的不同,明明在伺服器可以跑的class檔案反編譯出來之後會出現亂碼或者缺失的問題,這種情況的可能目前我覺得是兩個1.開發人員故意混...

Python pyc的編譯和反編譯

1.由python檔案編譯為.pyc檔案 python m compileall test.py 2.pyc的反編譯,使用uncompyle 最方便的就是使用pip安裝 uncompyle pip install uncompyle uncompyle6 help 檢視幫助 uncompyle6 m...

android混淆和反編譯

buildtypes 這個proguard android.txt是sdk中groguard預設的檔案,具體位址在 opt sdk tools proguard proguard android.txt 而proguard rules.pro是as中專用的proguard配置檔案,其實只是字尾名不同...