user1427172
user1427172

Reputation: 1

Browse JAR files in eclipse

I'm not very experienced with Java or Eclipse, but I am trying to browse and decompile some jar files within Eclipse. I went ahead and grabbed JD-Eclipse for opening .class files, but I can't get Eclipse to let me browse the .jar files. I read that the problem is because the .jar files aren't added to the build path, but when I try to add them following this guide, I don't have any options after expanding "Build Path". Did I set up my project incorrectly? Thanks.

Upvotes: 0

Views: 690

Answers (1)

Jeshurun
Jeshurun

Reputation: 23186

  1. Create a new Java Project.
  2. Select the project, right click and select properties
  3. From the list on the left, click Java Build Path, then click the "Add External JARs..." button.
  4. Browse and select the jars from your file system.

Upvotes: 1

Related Questions