I have a third-party jar file that comes with the javadocs for only part of the API. Is there a way to reverse engineer the jar file to obtain a complete listing of classes and methods?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
jar tfwill list the contents for you.javapwill allow you to see more details of the classes (see the tools guide).For instance if you have a class named
mypkg.HelloWorldin a jarmyjar.jarthen run it likeHowever, are you sure you want to be using these unpublished APIs? It’s usually a really bad idea.