1. 程式人生 > 程式設計 >Java如何修改.class檔案變數

Java如何修改.class檔案變數

最近遇到了一個問題,一份很老的程式碼要修改裡面的變數,原始碼早就和開發者一起不知去向,其中引用了一些jar包導致無法直接編譯,只能直接修改.class檔案

idea安裝jclasslib-bytecode-viewer外掛

標準方式安裝外掛

Java如何修改.class檔案變數

準備要修改的.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功能找到要修改的內容,我們發現有一個String型別常量,指向23,點選23就能看到要修改的內容

Java如何修改.class檔案變數

Java如何修改.class檔案變數

修改.class檔案中的變數

23是要修改的內容

/**
 * @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);
  }
}

執行結果

可以看到已經修改完成

public class HelloWorld {
  public HelloWorld() {
  }

  public static void main(String[] args) {
    String word = "Hello World HELLO WORLD";
    System.out.println(word);
  }
}

以上就是Java如何修改.class檔案變數的詳細內容,更多關於Java修改檔案變數的資料請關注我們其它相關文章!