Eclipse IDE内部项目表示

时间:2014-08-05 15:31:23

标签: eclipse intellij-idea

目前我正在尝试编写一个专门为我的项目从Eclipse IDE迁移到Intellij Idea的工具。

目前,主要问题是Eclipse如何以及在何处内部存储项目信息(即库,应用程序模块之间的依赖关系等)。

P.S。 Intellij的迁移工具不适用于我的项目。

更新

<?xml version="1.0" encoding="UTF-8"?>
<classpath>
    <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
    <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
    <classpathentry excluding="generated/" kind="src" path="src"/>
    <classpathentry kind="src" path="src/"/>
    <classpathentry kind="src" path="resources"/>
    <classpathentry kind="output" path="bin"/>
</classpath>

1 个答案:

答案 0 :(得分:0)

eclipse在项目中保留的所有内容都存储在.settings文件夹中(包含a.o.project和.classpath)。

但除非你有一些非常具体的设置,你应该能够毫不费力地将你的项目导入IntelliJ。即使不是,我也希望在IntelliJ中手动设置项目比为它编写工具要快得多。