Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have found tons of question about Editing files inside jar but I did not find any specific answers.

How to edit Class files inside jar file?

What i want to do is Edit the class file inside jar but i have not yet found a step by step explanation for it. What i have learn that jar file can be Unzip but after unzipping I need to edit the .class, How do i do that?

I have seen that I need to use Sourceforce Class Editor? but How do I work with it?

Is there anyway to edit a .class inside .jar?

EDIT: This is the link where i got the .jar "PDFViewer.jar".

share|improve this question
Why are you trying to do this? – Raghav Sood Jan 13 at 8:33
1  
You need a decompiler.. – Pradeep Simha Jan 13 at 8:33
"Is there anyway to edit a .class inside .jar?" Sure there is. But if you have a right to do it, you usually have access to the source. What Jar is it, specifically? Where did you get it (URL please)? – Andrew Thompson Jan 13 at 8:35
A .class file is the compiled version of a .java file. Its like trying to open a .exe file with notepad. You need a decompiler. – Sanchit Jan 13 at 8:38
2  
That is an eclipse project. You should download all of it, download eclipse (eclipse.org/downloads), open the project in eclipse. Edit it, make sure it works properly. Right click the project -> export -> export as runnable jar file. – Sanchit Jan 13 at 8:49
show 7 more comments

closed as not a real question by Howard, asgoth, jlordo, thkala, Bohemian Jan 13 at 12:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You can download the zip archive of the project from here.

The simply open Eclipse, go to File -> Import -> Existing Projects into Workspace and select the unzipped folder of that project. You now have the source code as a project in Eclipse, and can edit it directly and compile into a jarfile, without any need to decompile it.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.