吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1351|回复: 0
收起左侧

[求助] [ JAVA ]求助大神,如何直接修改 class 文件

[复制链接]
lk543121534 发表于 2020-2-5 02:35
本帖最后由 lk543121534 于 2020-2-15 08:04 编辑


https://pan.baidu.com/s/1mGDi6NUoM3tPwUCw_tiYFg
p8py

1.jpg

我从 gs.jar 中取出了 Sect.class 文件,想要对其中某一项做出修改,再放回 gs.jar

先是尝试用 jd-gui 反编译出 Sect.java 文件,对其修改,但无法编译回 class(貌似是因为有内部类的关系?不懂)

0.jpg

又尝试使用 jclasslib 直接修改 Sect.class 文件(参照 http://www.voidcn.com/article/p-rskrlseu-mc.html)

2.jpg

我想要把 [0014] 的 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 [0014] 的 604800 改成 1
文件被更新了,但 jclasslib 查看 604800 还是没变

小白不懂问题出在哪,还望高手能够解答
最好能告诉我问题出在哪,怎么改,或者用什么其他方法能够办到
实在没时间解释的话,如果能直接帮忙改好,也表示感谢


发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2025-1-13 14:39

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表