<!-- .classpath文件 --> <?xml version=”1.0” encoding=”UTF-8”?> <classpath> <!-- 源码目录 --> <classpathentry kind=”src” output="/web-inf/classes" path=”src”/> <!-- JDK运行时容器 --> <classpathentry kind=”con” path=”org.eclipse.jdt.launching.JRE_CONTAINER”/> <!-- 以下为类库path为你自定义的目录,需要导入的jar文件 --> <classpathentry kind=”lib” path=”web-inf/lib/jxl.jar”/> <!-- 编译后输出class目录 --> <classpathentry kind=”output” path=”/web-inf/classes”/> </classpath>
<!--.project文件 --> <?xml version=”1.0” encoding=”UTF-8”?> <projectDescription> <!-- 工程名称 <name>--> <name>execlInterface</name> <comment></comment> <projects></projects> <!-- 编译器指定 <buildSpec>--> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments></arguments> </buildCommand> </buildSpec> <!-- 核心特性 <natures> --> <natures> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription>
<!--.mymetadata文件--> <?xml version=”1.0” encoding=”UTF-8”?> <!--type : 工程类型name : 工程名称id : 工程在工作空间内的唯一标识context-root : 网站根路径j2ee-spec: J2EE标准archive : 打包后war文件--> <project-moduletype=”WEB”name=”upload”id=”myeclipse.1152954865843”context-root=”/upload”j2ee-spec=”1.4”archive=”upload.war”> <attributes> <!-- value : Web根目录名称 --> <attribute name=”webrootdir” value=”WebRoot” /></attributes> </project-module>
时间: 2024-10-31 07:10:57