eclipse⼯程配置⽂件详解
先建了⼀个最基本的java⼯程:TestProject,发现eclipse⾃动⽣成了这些东西:
分别打开看看:
.classpath⽂件:
Xml代码
1. <?xml version="1.0"encoding="UTF-8"?>
2. <classpath>
3.    <classpathentrykind="src"path="src"/>
4.
<classpathentrykind="con"path="lipse.jdt.launching.JRE_lipse.jdt.internal.debug.ui.launcher.StandardV
1.6"/>
5.    <classpathentrykind="output"path="bin"/>
6. </classpath>
.project⽂件:
Xml代码
1. <?xml version="1.0"encoding="UTF-8"?>
eclipse怎么打开已有的java文件2. <projectDescription>
3.    <name>TestProject</name>
4.    <comment></comment>
5.    <projects>
6.    </projects>
7.    <buildSpec>
8.        <buildCommand>
9.            <name&javabuilder</name>
10.            <arguments>
11.            </arguments>
12.        </buildCommand>
13.    </buildSpec>
14.    <natures>
15.        <nature&javanature</nature>
16.    </natures>
17. </projectDescription>
Java代码
1. #Tue Dec 15 01:30:54 GMT2009
2. eclipse.preferences.version=1
3. degen.inlineJsrBytecode=enabled
4. degen.targetPlatform=1.6
5. degen.unusedLocal=preserve
6. pilerpliance=1.6
7. piler.debug.lineNumber=generate
8. piler.debug.localVariable=generate
9. piler.debug.sourceFile=generate
10. piler.problem.assertIdentifier=error
11. umIdentifier=error
12. piler.source=1.6
#Tue Dec 15 01:30:54 GMT 2009
eclipse.preferences.version=1
再建个最常⽤的Synamic Web Project:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。