- 浏览: 937242 次
- 性别:
- 来自: 成都
最新评论
文章列表
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 Ass ...
/*
* 获取虚拟中心的信息
*
* @return
*/
public JSONObject getVirtualCenter() {
JSONObject json = new JSONObject();
//ls.getVirtualCenter()为Map对象
json.accumulateAll(ls.getVirtualCenter());
return json;
}
/**
*
* 生成虚拟中心下拉列表
* @param data 为json
...