Package org.boris.pecoff4j

Examples of org.boris.pecoff4j.SectionData


    private static void writeSection(PE pe, DataEntry entry, IDataWriter dw)
            throws IOException {
        SectionTable st = pe.getSectionTable();
        SectionHeader sh = st.getHeader(entry.index);
        SectionData sd = st.getSection(entry.index);
        int prd = sh.getPointerToRawData();
        if (prd > dw.getPosition()) {
            byte[] pa = sd.getPreamble();
            if (pa != null) {
                dw.writeBytes(pa);
            } else {
                dw.writeByte(0, prd - dw.getPosition());
            }
        }

        byte[] b = sd.getData();
        dw.writeBytes(b);
    }
View Full Code Here

TOP

Related Classes of org.boris.pecoff4j.SectionData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.