Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to view a java class file in Notepad++ or Notepad, it was in a .jar file and I unzipped it, and it has characters like NUL and DC1 and DC2 and SOH and other "gibberish" looking characters...is there a way to fix/avoid this?

share|improve this question

2 Answers

Class files are binary files compiled from source code. They're not supposed to be human readable. You want to find the .java source files used to create them if you want to read the code.

Or use a Java decompiler to revert the class files back into source code.

share|improve this answer

Class files are binary, not text. They're not supposed to look correct in a text editor.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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