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

準備要修改的.class文件
這里我們寫一個簡單的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文件,點擊view->Show Bytecode With Jclasslib ,在Constants Pool中使用Text filter功能找到要修改的內(nèi)容,我們發(fā)現(xiàn)有一個String類型常量,指向23,點擊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:\\GitCode\\zero\\test111\\target\\classes\\HelloWorld.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進行修改
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文件變量的詳細內(nèi)容,更多關于Java修改文件變量的資料請關注腳本之家其它相關文章!
相關文章
SpringData整合ElasticSearch實現(xiàn)CRUD的示例代碼(超詳細)
本文主要介紹了SpringData整合ElasticSearch實現(xiàn)CRUD的示例代碼,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2023-07-07
Spring中的FactoryBean與ObjectFactory詳解
這篇文章主要介紹了Spring中的FactoryBean與ObjectFactory詳解,FactoryBean是一種特殊的bean,本身又是個工廠,實現(xiàn)了FactoryBean的bean會被注冊到容器中,需要的朋友可以參考下2023-12-12
xxl-job 帶參數(shù)執(zhí)行和高可用部署方法
這篇文章主要介紹了xxl-job 帶參數(shù)執(zhí)行和高可用部署,本文給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2023-04-04
Java對象和Json文本轉(zhuǎn)換工具類的實現(xiàn)
Json?是一個用于Java對象和Json文本相互轉(zhuǎn)換的工具類,本文主要介紹了Java對象和Json文本轉(zhuǎn)換工具類,具有一定的參考價值,感興趣的可以了解一下2022-03-03
Java數(shù)據(jù)結(jié)構(gòu)超詳細分析二叉搜索樹
二叉搜索樹是以一棵二叉樹來組織的。每個節(jié)點是一個對象,包含的屬性有l(wèi)eft,right,p和key,其中,left指向該節(jié)點的左孩子,right指向該節(jié)點的右孩子,p指向該節(jié)點的父節(jié)點,key是它的值2022-03-03

