0

I am trying to read classes from a jar. So I started by extracting the files under my jar, I am using JAD decompiler. The decompiler works, for example I have written

System.out.println()

And I have tried to open the class System and it shows the implementation of the class. When trying to read the .class under my jar, I have tried to put the .class under a package, but I can not see the .class under the package, so I have tried to open it like this : File>Open File.., I get the error : The Class File Viewer cannot handle the given input ('org.eclipse.ui.ide.FileStoreEditorInput').

How can I see my .class?

LSoft
  • 117
  • 1
  • 9

1 Answers1

0

You could open any .class files with Intellij IDE

ngranin
  • 181
  • 2
  • 14
  • Why minus? In addition: the Class File Viewer can only open class files which are on the Java build path of a project. – ngranin Jul 07 '20 at 15:23
  • Please see the following link, they describe your issue: https://www.eclipse.org/forums/index.php/t/452483/ – ngranin Jul 07 '20 at 20:28