Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set up Intellij to run javap command on a program? [closed]

I use Intellij Idea for development and I want to configure Intellij to optionally use javap -c feature . Is there any plugin ? How do I do that ?

like image 233
Geek Avatar asked Sep 17 '12 11:09

Geek


People also ask

How do I get the Run command in IntelliJ?

From the main menu, select Run | Show Running List. In the top-right corner of the editor, IntelliJ IDEA shows a list with all active applications.

How do I run a program in IntelliJ terminal?

Go to the Run menu and select the Run option. Again Select the Class name and run. The output will appear on the console.

What is Javap command?

The javap command disassembles one or more class files. Its output depends on the options used. If no options are used, javap prints out the package, protected, and public fields and methods of the classes passed to it. javap prints its output to stdout.


1 Answers

You can configure an external tool to run javap.

like image 153
CrazyCoder Avatar answered Sep 21 '22 18:09

CrazyCoder