[ JAVA ]求助大神,如何直接修改 class 文件
本帖最后由 lk543121534 于 2020-2-15 08:04 编辑https://pan.baidu.com/s/1mGDi6NUoM3tPwUCw_tiYFg
p8py
我从 gs.jar 中取出了 Sect.class 文件,想要对其中某一项做出修改,再放回 gs.jar
先是尝试用 jd-gui 反编译出 Sect.java 文件,对其修改,但无法编译回 class(貌似是因为有内部类的关系?不懂)
又尝试使用 jclasslib 直接修改 Sect.class 文件(参照 http://www.voidcn.com/article/p-rskrlseu-mc.html)
我想要把 的 604800 改成 1
在 eclipse 里面新建了一个 Test
package aaaaaa;
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.ConstantDoubleInfo;
import org.gjt.jclasslib.structures.constants.ConstantIntegerInfo;
import org.gjt.jclasslib.structures.constants.ConstantUtf8Info;
public class Test {
public static void main(String[] args) throws Exception {
String filePath = "D:\\Sect.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 != null) {
System.out.print(i);
System.out.print(" = ");
System.out.print(infos.getVerbose());
System.out.print(" = ");
System.out.println(infos.getTagVerbose());
if (i == 0014) {
//ConstantUtf8Info uInfo = (ConstantUtf8Info)infos;
//uInfo.setBytes("400".getBytes());
ConstantIntegerInfo uInfo=(ConstantIntegerInfo) infos;
uInfo.setInt(1);;
infos = uInfo;
}
}
}
cf.setConstantPool(infos);
fis.close();
File f = new File(filePath);
ClassFileWriter.writeToFile(f, cf);
}
}
运行之后,无法将 Sect.class 的 604800 改成 1
文件被更新了,但 jclasslib 查看 604800 还是没变
小白不懂问题出在哪,还望高手能够解答
最好能告诉我问题出在哪,怎么改,或者用什么其他方法能够办到
实在没时间解释的话,如果能直接帮忙改好,也表示感谢
页:
[1]