`

myeclipse反编译插件 .

阅读更多

本文为合成篇,但亲自测试无误的。

------------------------

1.下载反编译工具jad(下面提供下载)

将下载下来的jadstar158.zip解压缩,将jad.exe文件放入jdk安装目录下

如:D:\Program Files\Java\jdk1.6.0_20\bin 

 

2.下载eclipse反编译插件net.sf.jadclipse_3.3.0.jar(下面提供下载)

 

 

3.net.sf.jadclipse_3.3.0.jar 放入MyEclipse安装目录下,

 如 :安装目录\Genuitec\dropins下 没有dropins,新建之,然后在dropins中新建features文件夹和plugins文件夹,将net.sf.jadclipse_3.3.0.jar拷贝到plugins中,然后新建java工程,运行以下代码(替换其中最后的代码,你电脑反编译插件所在的实际位置):

 

Java代码 复制代码 收藏代码

import java.io.File;  
import java.util.ArrayList;  
import java.util.List;  

/** 
* MyEclipse9 插件配置代码生成器 


*/ 

public class CreatePluginsConfig  
{  
 
    public CreatePluginsConfig()  
    {  
    }  
 
    public void print(String path)  
    {  
        List<String> list = getFileList(path);  
        if (list == null)  
        {  
            return;  
        }  
 
        int length = list.size();  
        for (int i = 0; i < length; i++)  
        {  
            String result = "";  
            String thePath = getFormatPath(getString(list.get(i)));  
            File file = new File(thePath);  
            if (file.isDirectory())  
            {  
                String fileName = file.getName();  
                if (fileName.indexOf("_") < 0)  
                {  
                    print(thePath);  
                    continue;  
                }  
                String[] filenames = fileName.split("_");  
                String filename1 = filenames[0];  
                String filename2 = filenames[1];  
                result = filename1 + "," + filename2 + ",file:/" + path + "\\" 
                        + fileName + "\\,4,false";  
                System.out.println(result);  
            } else if (file.isFile())  
            {  
                String fileName = file.getName();  
                if (fileName.indexOf("_") < 0)  
                {  
                    continue;  
                }  
                int last = fileName.lastIndexOf("_");// 最后一个下划线的位置  
                String filename1 = fileName.substring(0, last);  
                String filename2 = fileName.substring(last + 1, fileName  
                        .length() - 4);  
                result = filename1 + "," + filename2 + ",file:/" + path + "\\" 
                        + fileName + ",4,false";  
                System.out.println(result);  
            }  
 
        }  
    }  
 
    public List<String> getFileList(String path)  
    {  
        path = getFormatPath(path);  
        path = path + "/";  
        File filePath = new File(path);  
        if (!filePath.isDirectory())  
        {  
            return null;  
        }  
        String[] filelist = filePath.list();  
        List<String> filelistFilter = new ArrayList<String>();  
 
        for (int i = 0; i < filelist.length; i++)  
        {  
            String tempfilename = getFormatPath(path + filelist[i]);  
            filelistFilter.add(tempfilename);  
        }  
        return filelistFilter;  
    }  
 
    public String getString(Object object)  
    {  
        if (object == null)  
        {  
            return "";  
        }  
        return String.valueOf(object);  
    }  
 
    public String getFormatPath(String path)  
    {  
        path = path.replaceAll("\\\\", "/");  
        path = path.replaceAll("//", "/");  
        return path;  
    }  
 
    public static void main(String[] args)  
    {  
        /*替换成你的插件的安装目录*/
            String plugin = "C:\\Users\\Administrator\\AppData\\Local\\Genuitec\\dropins";  
        new CreatePluginsConfig().print(plugin);  
    }  
}   

 

 

 

4.重启MyEclipse,配置 windows--》Preference

 

 

 

 

 

 

----希望大家都能有用!!! ^ ^

  • 大小: 87.9 KB
  • 大小: 93.4 KB
分享到:
评论

相关推荐

    myeclipse 反编译插件.rar

    "myeclipse 反编译插件.rar" 提供了一个在MyEclipse集成开发环境中使用的反编译插件,方便用户直接在IDE内部查看.class文件对应的源代码,而无需离开工作环境。这个压缩包文件包含了安装文档,确保用户可以顺利地将...

    MyEclipse.反编译插件.rar

    反编译插件.rar"是一个压缩包,其中包含了一个用于MyEclipse的反编译插件。反编译是将已编译的二进制代码转换回源代码的过程,这对于理解非开源库的功能、调试问题或学习他人的编程技巧非常有用。 反编译插件通常...

    MyEclipse反编译插件和安装教程

    (1) 将jad.exe解压到java的... 2)在eclipse窗口下,点击Window &gt; Preferences &gt; Java &gt; JadClipse &gt; Misc,将Convert Unicode strings into ANSI strings选项打勾,避免反编译后可能出现的中文乱码。 希望对您有用

    MyEclipse反编译插件安装.zip

    1. 下载并解压 "MyEclipse反编译插件安装.zip" 文件,获取到 jad.exe 和 net.sf.jadclipse_3.3.0.jar 这两个文件。 2. 打开 MyEclipse,选择“Window”菜单,然后点击“Preferences”(或者“首选项”,根据你的系统...

    myeclipse反编译插件

    myeclipse反编译插件是用于在MyEclipse集成开发环境中查看和理解已编译Java类文件源代码的工具。在软件开发过程中,有时我们需要查看或学习他人的代码实现,但只获得了编译后的.class文件,此时反编译插件就显得尤为...

    MyEclipse6.0和6.5的反编译插件.rar

    "MyEclipse6.0和6.5的反编译插件.rar"这个压缩包文件显然包含了针对这两个版本的MyEclipse的反编译插件,使得用户能够在IDE内直接查看`.class`文件的源代码。 反编译是将已编译的字节码转换回源代码的过程,虽然不...

    myeclipse 反编译插件

    5. **IDE集成**:myeclipse反编译插件与jad的结合,使得开发者在遇到无源码的库时,可以直接在IDE中查看类文件的源代码,提高开发效率和解决问题的能力。 6. **使用场景**:反编译插件在调试第三方库、维护旧代码或...

    Myeclipse反编译插件

    "Myeclipse反编译插件"就是针对这一需求的解决方案,它使得用户能够在Myeclipse集成开发环境中直接进行反编译操作,极大地提高了开发效率。 Myeclipse是一款强大的Java EE集成开发环境,它集成了许多功能,如代码...

    MyEclipse 反编译插件的安装

    本文将详细介绍如何在 MyEclipse 中安装反编译插件——JadClipse。 1. **下载 MyEclipse 与反编译插件** 首先,确保你拥有 MyEclipse 10.0 或更高版本。在这里,我们以 MyEclipse 10.0 为例。你可以通过网络搜索...

    java myeclipse反编译插件

    Java MyEclipse反编译插件是开发人员在进行Java代码研究或逆向工程时使用的工具,它允许用户查看和理解已编译的Java类文件的源代码,即使原始源代码不可用。这个插件极大地扩展了MyEclipse集成开发环境(IDE)的功能...

    MyEclipse反编译插件

    MyEclipse反编译插件是一款专为开发者设计的实用工具,它允许用户在MyEclipse集成开发环境中直接对引入的Jar包进行反编译,以便查看和理解第三方库的源代码。这对于学习新的API、调试问题或者进行二次开发具有重要...

    MyEclipse反编译jad.exe

    `MyEclipse反编译jad.exe`指的是在MyEclipse环境中集成JAD反编译器,使得用户可以直接在IDE内进行反编译操作,无需离开开发环境,提高了工作效率。 `jadclipse_3.3.0.jar`是JADClipse插件的文件,它是JAD与Eclipse...

    MyEclipse6.x反编译插件.rar

    MyEclipse6.x反编译插件是一款在软件开发过程中极为重要的工具,它为开发者提供了查看和理解Java字节码的能力,使得我们可以从已编译的.class文件中反向获取源代码。这个插件的出现,极大地推动了对开源项目的学习和...

    MyEclipse反编译插件jar包及exe

    MyEclipse反编译插件是开发者们在处理Java代码时非常有用的工具,它能够帮助我们查看和理解已编译的.class文件中的源代码。在Java编程中,源代码会被编译成字节码(.class文件),这些字节码是机器可执行的,但并不...

    工作5年来一直用的Myeclipse 反编译插件

    标题提到的“工作5年来一直用的Myeclipse反编译插件”,表明这个插件在长期的开发实践中证明了其稳定性和实用性。反编译功能在某些场景下是必不可少的,例如当源码丢失,但需要查看或修改已部署的JAR包中的代码时,...

    myeclipse反编译插件及安装方法

    本文将详细介绍如何在MyEclipse集成开发环境中安装和使用反编译插件,以便更好地理解和分析已编译的Java类。 首先,我们要了解什么是反编译。反编译是将已编译的字节码(如.class文件)转换回源代码的过程。虽然不...

    MyEclipse10.0安装jad反编译插件.zip

    然后,下载包含所需jar包的压缩文件"MyEclipse10.0安装jad反编译插件.zip"。这个压缩包包含了安装插件所需的所有组件。 安装步骤如下: 1. 解压下载的zip文件,你会看到包含的jar包。 2. 打开MyEclipse,选择菜单...

    myeclipse反编译插件安装

    myeclipse反编译插件 一:下载插件 JAD : http://www.varaneckas.com/sites/default/files/jad/jad158g.win.zip(选择与操作系统对应的版本) JadClipse:http://sourceforge.net/projects/jadclipse/files/...

    eclipse 和 myeclipse 反编译插件JadClipse 和安装方法

    首先,JadClipse是一款针对Java开发者的反编译工具,它集成了Eclipse和MyEclipse这两个流行的集成开发环境(IDE)。JadClipse允许开发者查看和理解.jar或.class文件的源代码,这对于调试、学习和分析第三方库或无法...

Global site tag (gtag.js) - Google Analytics