http://www.csdn.net/dev/Format/#数据库文件格式
pe1.zip PE执行文件(Win 95/NT/WIN32)格式说明和查看程序(RTF文档)
winf10.pdf PE执行文件和 STI (微软符号和类型信息) (Acrobat文档)

解决方案 »

  1.   

    字面上的意思好象是‘可移动的可执行文件’,那它和EXE又有什么区别呢?
      

  2.   

    The PE ("portable executable") file format is the format of executable
    binaries (DLLs and programs) for MS windows NT, windows 95 and
    win32s; in windows NT, the drivers are in this format, too.
    It can also be used for object files and libraries.The format is designed by Microsoft, apparently based on a good
    knowledge of COFF, the "common object file format" used for object files
    and executables on several UNIXes and on VMS.The win32 SDK includes a header file <winnt.h> containing #defines and
    typedefs for the PE-format. I will mention the struct-member-names and
    #defines as we go.You may also find the DLL "imagehelp.dll" to be helpful. It is part of
    windows NT, but documentation is rare. Some of its functions are
    described in the "Developer Network".
      

  3.   

    意思是在windows系列里可以移植的exe
    只要是这种格式的可执行文件就可以被windows识别而不依赖特种版本和特别资源。