Java如何修改.class文件變量
最近遇到了一個(gè)問題,一份很老的代碼要修改里面的變量,源碼早就和開發(fā)者一起不知去向,其中引用了一些jar包導(dǎo)致無法直接編譯,只能直接修改.class文件
idea安裝jclasslib-bytecode-viewer插件
標(biāo)準(zhǔn)方式安裝插件
準(zhǔn)備要修改的.class文件
這里我們寫一個(gè)簡(jiǎn)單的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());//對(duì)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修改文件變量的資料請(qǐng)關(guān)注好吧啦網(wǎng)其它相關(guān)文章!
相關(guān)文章:
1. 用xslt+css讓RSS顯示的跟網(wǎng)頁(yè)一樣漂亮2. ASP.NET MVC把數(shù)據(jù)庫(kù)中枚舉項(xiàng)的數(shù)字轉(zhuǎn)換成文字3. 《CSS3實(shí)戰(zhàn)》筆記--漸變?cè)O(shè)計(jì)(一)4. 移動(dòng)端HTML5實(shí)現(xiàn)拍照功能的兩種方法5. 測(cè)試模式 - XSL教程 - 56. ASP.NET Core自定義中間件的方式詳解7. html5手機(jī)觸屏touch事件介紹8. CSS3實(shí)現(xiàn)動(dòng)態(tài)翻牌效果 仿百度貼吧3D翻牌一次動(dòng)畫特效9. 讓chatgpt將html中的圖片轉(zhuǎn)為base64方法示例10. 教你JS更簡(jiǎn)單的獲取表單中數(shù)據(jù)(formdata)
