.class is a bytecode file. This file cannot be viewed directly using EditPlus. It can be viewed by decompiling it into a .java file through Mocha decompilation software.
#The operating environment of this article: Windows 7 system, Dell G3. What file is
.class?
.class is a bytecode file. You cannot use EditPlus to view it directly. You need to decompile it into a .java file.
However, .class is relatively easy to be decompiled. Mocha is the first decompilation software. You can learn about this decompilation software at
http://www.brouhaha.com/~eric/computers/mocha.html
.
There are many similar software. Java SDK 1.1 also includes a decompilation software javap.
Of course there is decompilation, and there are ways to deal with decompilation.
On this site you can also learn about some tools for dealing with decompilation.
The following article introduces this situation in more detail:
http://www.cs.arizona.edu/~collberg/Research/Students/DouglasLow/obfuscation.html
For more related knowledge, please visit the FAQ column!
The above is the detailed content of What file is .class. For more information, please follow other related articles on the PHP Chinese website!