Reputation: 673
I have httpmime-4.1.2.jar this jar file , I want to see the source for the Multipartentity class in eclipse. How do i see this in eclipse?
Upvotes: 1
Views: 1898
Reputation: 240890
Download the source of this library and use attach source
in Eclipse.
Upvotes: 5
Reputation: 59168
You cannot see it, you need to download source code separately. jar file does not contain source code, only bytecode. You must download the source and then use attach source in eclipse.
Upvotes: 1
Reputation: 26012
You can use jd-gui to see the Java source codes of “.class” files.
Upvotes: 1
Reputation: 7964
You can see the source in eclipse. It will need to be decompiled. You can do in eclipse, see JD-Eclipse
JD-Eclipse is a plug-in for the Eclipse platform. It allows you to display all the Java sources during your debugging process, even if you do not have them all.
JD-Eclipse is free for non-commercial use. This means that JD-Eclipse shall not be included or embedded into commercial software products. Nevertheless, this project may be freely used for personal needs in a commercial or non-commercial environments.
Upvotes: 3