1

I've a standalone compiled java application. I don't have source files for this application and I am facing an issue. I need to fix this issue and need to log some information. I have only .class files at my disposal. Is it possible to modify these files to enable logging of some information?

0

3 Answers 3

1

You can De-compile your class files , and can get the codes corresponding to your class files.

Then you can create new files with same name , with change in logging code .

Refer this for more details about De-compiler.

Sign up to request clarification or add additional context in comments.

Comments

1

I believe you can use aspectj for this.. a quick google search gave me this link.. http://java.jiderhamn.se/2013/08/23/debugging-third-party-libraries-with-aspectj-and-maven/

see if this helps..

Comments

0

No, you won't. The only option left to you is, de-compile the class files and get the code.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.