Eclipse PDE creating a new project(Eclipse PDE 创建新项目)
问题描述
我正在使用向导扩展从用户那里获取一些设置.在我的插件修改了一个 Eclipse 项目之后,它应该被包含在 Package Explorer 中.整个事情与新项目→现有项目"非常相似.
I'm using the Wizard Extension to get some settings from the user. After on my plugin modifies an Eclipse project and then it should be included into the Package Explorer. The whole thing is then quite similar to "New Project → Existing Project".
但我找不到任何解决方案或教程等.如何通过向导扩展将 Eclipse 项目包含到我的包资源管理器中.
But I can't find any solution or tutorial etc. how to include an Eclipse project to my package explorer via the wizard extension.
推荐答案
对于任何感兴趣的人来说,这对我来说非常完美:
For anyone who´s interested this one works for me just perfect:
IProjectDescription description = ResourcesPlugin.getWorkspace().loadProjectDescription(new Path(ProjectPath + "/.project"));
IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(description.getName());
project.create(description, null);
project.open(null);
描述将从构建路径加载并导入工作区.之后项目将存在但已关闭,因此 project.open();就是这样……
The Description will be loaded from the build Path and import into the workspace. After that the project would exist but is closed so project.open(); That´s it...
这将是确保项目尚未导入的代码.
This would be the code to make sure that the project isn´t already imported.
IProjectDescription description = ResourcesPlugin.getWorkspace().loadProjectDescription(new Path(BuildPath + "/.project"));
IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(description.getName());
IProject[] array = ResourcesPlugin.getWorkspace().getRoot().getProjects();
for(int count = 0; count <= array.length - 1; count ++){
if(project.equals(array[count])){
array[count].close(null);
array[count].delete(true, null);
}
}
project.create(description, null);
project.open(null);
这篇关于Eclipse PDE 创建新项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Eclipse PDE 创建新项目


基础教程推荐
- 降序排序:Java Map 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01