JD-Eclipse-Plugin反编译插件的安装【以myEclipse8.5和eclipse为例】

【myEclipse8.5安装JD-Eclipse-Plugin

-------------------------------------------离线安装-------------------------------------------

1. 下载文件jdeclipse_update_site.zip

   下载地址:http://download.csdn.net/detail/qq316278987/4620347


2. 解压该文件到任意目录(如D:\MyEclipse 8.5\dropins下)


3. 删除plugins文件夹中其他平台以及64位系统jar包只留下下面两个jar包即可

MyEclipse8.5安装JD-Eclipse-Plugin

4.运行下面的java类:

import java.io.File;

public class CreatePluginsConfig {
 private String path;

public CreatePluginsConfig(String path) {
  this.path = path;
 }

public void print() {
  List 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) {
     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 getFileList(String path) {
  path = getFormatPath(path);
  path = path + "/";
  File filePath = new File(path);
  if (!filePath.isDirectory()) {
   return null;
  }
  String[] filelist = filePath.list();
  List filelistFilter = new ArrayList();
  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) {
  new CreatePluginsConfig(
    "D:\\Tool\\J2EE\\Genuitec\\MyEclipse 8.5\\dropins\\jdeclipse_update_site\\plugins")
    .print();// 重视此路径就是你安装插件的路径,按照本身的具体路径设置
 }
}
运行结果如下如所示:

MyEclipse8.5安装JD-Eclipse-Plugin

5.进入"MyEclipse 8.5\configuration\org.eclipse.equinox.simpleconfigurator"文件夹,将上面两行代码复制到bundles.info文件内容的最后,建议备份bundles.info文件,防止呈现不测,当呈现错误信息后,直接覆盖源文件即可。

MyEclipse8.5安装JD-Eclipse-Plugin

6.打开MyEclipse,进行设置

MyEclipse8.5安装JD-Eclipse-Plugin

注意:如果点击OK之后出现软件自动关闭的情况,就是myeclipse.ini中的内存设置过小或者过大。

我设置成下图这样就没有出现自动关闭的现象了。

MyEclipse8.5安装JD-Eclipse-Plugin


-------------------------------------------在线安装-------------------------------------------

MyEclipse8.5及更高版本:

首先点MyEclipse8.5的help菜单,点击:

MyEclipse8.5安装JD-Eclipse-Plugin

中的MyEclipse Configuration Center

出现以下界面:

MyEclipse8.5安装JD-Eclipse-Plugin

在这里,我们可以看到Browse Software下面的add Site按钮,点击它,

在弹出的Add Site 输入插件的name & site 点击完成后会看到自己的插件出现在下面的Personal Sites列表中:

Name的名字可以自取,在下取名为:JD-Eclipse

Site的网址为:http://java.decompiler.free.fr/jd-eclipse/update

MyEclipse8.5安装JD-Eclipse-Plugin

此时我们看到JD-Eclipse中有了这个plugin,我们需要按照下图所示使插件起效果

MyEclipse8.5安装JD-Eclipse-Plugin

Add to Profile后完成添加即可。

点击Pending Changes窗口中的按钮“apply change”即可开始update插件了。(MyEclipse8.5安装JD-Eclipse-Plugin我用MyEclipse Blue Edition 10这个“Pending Changes”在右上角返回工作间的左边)。

MyEclipse8.5安装JD-Eclipse-Plugin

 

Eclipse:

Installation of JD-Eclipse plug-in

From the Help menu in Eclipse, select Software Updates... to open an Software Updates and Add-ons pop-up window.

Select the Available Software tab.

Add a new remote site to add JD-Eclipse plug-in:

Click the Add Site... button to open a Add Site pop-up window.

In the Location text box, type the URL for the JD-Eclipse update site: http://java.decompiler.free.fr/jd-eclipse/update (shown below) and click OK.
MyEclipse8.5安装JD-Eclipse-Plugin

On the Software Updates and Add-ons window, check the JD-Eclipse Plug-in box (shown below), and click the Install... button.
MyEclipse8.5安装JD-Eclipse-Plugin

On the next screen, click the Finish button.

 

On the next screen, check the Java Decompiler Eclipse Plug-in certificate box and click the OK button.

Eclipse installs the JD-Eclipse plug-in. To finish the installation process, follow the prompts to shut down and re-start Eclipse.




【eclipse安装JD-Eclipse-Plugin】

1、下载jdeclipse_update_site.zip,解压,将plugins文件下的jd.ide.eclipse_0.1.3.jar和jd.ide.eclipse.win32.x86_0.1.3.jar复制到eclipse安装目录下的plugins里 

2、在eclipse里安装,选择help下的安装插件install new soft 或者叫update ……版本不同不一样,自己看哈  然后 点add site ,在弹出来的框的location选择刚下载的包的路径  然后下一步,安装即可 

3、安装好后,修改一个设置,选window-preferences  在输入框输入file Associations  在右边选*.class  下面将class file editor设置为默认的即可(点右边的default)  


安装完的时候记得选重启

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值