Java如何修改.class文件變量
最近遇到了一個(gè)問題,一份很老的代碼要修改里面的變量,源碼早就和開發(fā)者一起不知去向,其中引用了一些jar包導(dǎo)致無法直接編譯,只能直接修改.class文件
idea安裝jclasslib-bytecode-viewer插件
標(biāo)準(zhǔn)方式安裝插件

準(zhǔn)備要修改的.class文件
這里我們寫一個(gè)簡單的java方法
/** * @Description: * @author: wei.wang * @since: 2020/9/5 11:18 * @history: 1.2020/9/5 created by wei.wang */public class HelloWorld { public static void main(String[] args) { String word = 'Hello World'; System.out.println(word); }}
查找要修改的變量
打開要修改的.class文件,點(diǎn)擊view->Show Bytecode With Jclasslib ,在Constants Pool中使用Text filter功能找到要修改的內(nèi)容,我們發(fā)現(xiàn)有一個(gè)String類型常量,指向23,點(diǎn)擊23就能看到要修改的內(nèi)容


修改.class文件中的變量
23是要修改的內(nèi)容
/** * @Description: * @author: wei.wang * @since: 2020/9/4 19:42 * @history: 1.2020/9/4 created by wei.wang */import java.io.*;import org.gjt.jclasslib.io.ClassFileWriter;import org.gjt.jclasslib.structures.CPInfo;import org.gjt.jclasslib.structures.ClassFile;import org.gjt.jclasslib.structures.constants.ConstantUtf8Info;public class Test { public static void main(String[] args) throws Exception { String filePath = 'F:GitCodezerotest111targetclassesHelloWorld.class'; FileInputStream fis = new FileInputStream(filePath); DataInput di = new DataInputStream(fis); ClassFile cf = new ClassFile(); cf.read(di); CPInfo[] infos = cf.getConstantPool(); int count = infos.length; System.out.println(count); for (int i = 0; i < count; i++) { if (infos[i] != null) {System.out.print(i);System.out.print(' = ');System.out.print(infos[i].getVerbose());System.out.print(' = ');System.out.println(infos[i].getTagVerbose());//對23進(jìn)行修改if(i == 23){ ConstantUtf8Info uInfo = (ConstantUtf8Info)infos[i]; uInfo.setBytes('Hello World HELLO WORLD'.getBytes()); infos[i]=uInfo;} } } cf.setConstantPool(infos); fis.close(); File f = new File(filePath); ClassFileWriter.writeToFile(f, cf); }}
執(zhí)行結(jié)果
可以看到已經(jīng)修改完成
public class HelloWorld { public HelloWorld() { } public static void main(String[] args) { String word = 'Hello World HELLO WORLD'; System.out.println(word); }}
以上就是Java如何修改.class文件變量的詳細(xì)內(nèi)容,更多關(guān)于Java修改文件變量的資料請關(guān)注好吧啦網(wǎng)其它相關(guān)文章!
相關(guān)文章:
1. JS實(shí)現(xiàn)前端動(dòng)態(tài)分頁碼代碼實(shí)例2. 關(guān)于IDEA 2020.3 多窗口視圖丟失的問題3. javascript實(shí)現(xiàn)貪吃蛇小練習(xí)4. js實(shí)現(xiàn)碰撞檢測5. 一文帶你徹底理解Java序列化和反序列化6. 用Spring JMS使異步消息變得簡單7. PHP驗(yàn)證碼工具-Securimage8. Python 制作查詢商品歷史價(jià)格的小工具9. Python 利用Entrez庫篩選下載PubMed文獻(xiàn)摘要的示例10. ASP.NET MVC使用jQuery ui的progressbar實(shí)現(xiàn)進(jìn)度條

網(wǎng)公網(wǎng)安備