How to debug .class files in ECLIPSE?

前端 未结 3 1796
南方客
南方客 2020-12-06 13:32

I am using Eclipse 3.5 and I attached the src.zip to my global settings in Eclipse. Windows--> Preferences -->Java -->Installed JREs -->rt.jar - Source attachment - ...../j

3条回答
  •  春和景丽
    2020-12-06 13:59

    You may have the compiler set to include debugging information in YOUR class files, but the class files in rt.jar weren't compiled that way. You need to either recompile all the source for the classes in rt.jar (not for the faint of heart), or download a debug build of the jdk.

提交回复
热议问题