//flex table opened by JP

Click to See Complete Forum and Search --> : *.class


lai918
04-25-2001, 01:32 PM
What kind of program can I use to edit this kind of files? Something dealing with JAVA

BFlurie
04-26-2001, 05:37 AM
I tried opening one in Notepad.exe, then Quikview.exe. Mostly jibberish, but some Javascript is apparent. Pure Javascript will be in a .js file, so a .class file is probably compiled or encoded script. Not much you can do w/a .class file. IExplorer uses them when executing Java, but can't open them directly.

[This message has been edited by BFlurie (edited 04-26-2001).]

Kryogenitor
04-27-2001, 09:04 PM
*.class is a file that contains the compiled bytecode. Bytecode is what makes java platform independant so it should look relatively ugly. The readable java code (eg. System.out.println("blah") http://www.sysopt.com/forum/wink.gif is stored in the *.java file.
To read the *.class file you need a java IDE.

Hope that helps http://www.sysopt.com/forum/smile.gif

zskillz
04-28-2001, 11:11 AM
i've actually heard that there are ways to "reverse engineer" bytecode so that you can see the actual code.

I don't know where to get the software to do it, or even how well it works, but I believe that it is out there...

-Z