In eclipse development, you sometimes want to view the encapsulated third-party class files.Source codeIn this case, if the Jad plug-in is installed, you only need to place the mouse over the class or method name you want to see, and then press Ctrl to click it to see its sourceCode. The procedure is as follows:
1.download jad.exe and related plug-ins. net. SF. jadclipse_3.2.4.jar
2. Install the Eclipse plug-in by placing net. SF. jadclipse_3.2.4.jar In the Plugins directory under eclipse.
3. restart eclipse, click windows --> preferences, and open the Java node in the tree menu on the left. A jadclipse menu is displayed below, and two parameters need to be configured on the right panel: one is path to decompiler, which is used to specify the location of the decompiler. Here you enter the location where jad.exe is placed, and the other is used to specify the directory of the temporary file.
4. After the configuration is complete, you can implement the functions you want. decompile a third-party class file in real time, just like viewing a local Java source file.
Note: jad.exe and net. SF. jadclipse_3.2.4.jar can be downloaded in my personal space.