⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 codeattribute.java

📁 Java Bytecode Editor 是一个 JAVA 的字节码反汇编和修改器。它可以很方便的修改已经编译成 Class 文件的 JAVA 文件。
💻 JAVA
字号:
/*
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public
    License as published by the Free Software Foundation; either
    version 2 of the license, or (at your option) any later version.
*/

package org.gjt.jclasslib.structures.attributes;

import org.gjt.jclasslib.structures.AttributeInfo;
import org.gjt.jclasslib.structures.InvalidByteCodeException;

import java.io.*;

/**
    Describes a <tt>Code</tt> attribute structure.
 
    @author <a href="mailto:jclasslib@ej-technologies.com">Ingo Kegel</a>
    @version $Revision: 1.1 $ $Date: 2005/11/01 13:18:24 $
*/
public class CodeAttribute extends AttributeInfo {

    /** Name of the attribute as in the corresponding constant pool entry. */
    public static final String ATTRIBUTE_NAME = "Code";

    private static final int INITIAL_LENGTH = 12;
    
    private int maxStack;
    private int maxLocals;
    private byte[] code;
    private ExceptionTableEntry[] exceptionTable;

    /**
        Get the maximum stack depth of this code attribute.
        @return the stack depth
     */
    public int getMaxStack() {
        return maxStack;
    }

    /**
        Set the maximum stack depth of this code attribute.
        @param maxStack the stack depth
     */
    public void setMaxStack(int maxStack) {
        this.maxStack = maxStack;
    }

    /**
        Get the maximum number of local variables of this code attribute.
        @return the maximum number
     */
    public int getMaxLocals() {
        return maxLocals;
    }

    /**
        Set the maximum number of local variables of this code attribute.
        @param maxLocals the maximum number
     */
    public void setMaxLocals(int maxLocals) {
        this.maxLocals = maxLocals;
    }

    /**
        Get the code of this code attribute as an array of bytes .
        @return the array
     */
    public byte[] getCode() {
        return code;
    }

    /**
        Set the code of this code attribute as an array of bytes .
        @param code the array
     */
    public void setCode(byte[] code) {
        this.code = code;
    }

    /**
        Get the exception table of this code attribute as an array of
        <tt>ExceptionTableEntry</tt> elements.
        @return the array
     */
    public ExceptionTableEntry[] getExceptionTable() {
        return exceptionTable;
    }
    
    /**
        Set the exception table of this code attribute as an array of
        <tt>ExceptionTableEntry</tt> elements.
        @param exceptionTable the array
     */
    public void setExceptionTable(ExceptionTableEntry[] exceptionTable) {
        this.exceptionTable = exceptionTable;
    }

    public void read(DataInput in)
        throws InvalidByteCodeException, IOException {
            
        maxStack = in.readUnsignedShort();
        maxLocals = in.readUnsignedShort();
        int codeLength = in.readInt();
        code = new byte[codeLength];
        in.readFully(code);
        
        readExceptionTable(in);
        readAttributes(in);
        if (debug) debug("read ");
    }

    public void write(DataOutput out)
        throws InvalidByteCodeException, IOException {
        
        super.write(out);
        out.writeShort(maxStack);
        out.writeShort(maxLocals);
        out.writeInt(getLength(code));
        out.write(code);
        
        writeExceptionTable(out);
        writeAttributes(out);
      
        if (debug) debug("wrote ");
    }

    private void readExceptionTable(DataInput in)
        throws InvalidByteCodeException, IOException {
            
        int exceptionTableLength = in.readUnsignedShort();
        exceptionTable = new ExceptionTableEntry[exceptionTableLength];
        for (int i = 0; i < exceptionTableLength; i++) {
            exceptionTable[i] = ExceptionTableEntry.create(in, classFile);
        }
    
    }
    
    private void writeExceptionTable(DataOutput out)
        throws InvalidByteCodeException, IOException {
            
        int exceptionTableLength = getLength(exceptionTable);

        out.writeShort(exceptionTableLength);
        for (int i = 0; i < exceptionTableLength; i++) {
            exceptionTable[i].write(out);
        }
    
    }

    public int getAttributeLength() {
        return INITIAL_LENGTH + getLength(code) + 
               getLength(exceptionTable) * ExceptionTableEntry.LENGTH +
               6 * getLength(attributes) + 
               getTotalAttributesLength() ;
    }

    protected void debug(String message) {
        super.debug(message + "Code attribute with max_stack " + maxStack + 
              ", max_locals " + maxLocals + ", code_length " + getLength(code));
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -