将多个单独的文件导入到 eclipse 项目中
我有几个包含 Tomcat Web 应用程序的文件,我需要将它们导入到 Eclipse 项目中,以便我可以轻松地从它们创建 EAR 文件。
出于隐私原因,我更改了一些文件夹+文件的名称。
我的文件目前全部位于文件夹 'test'
中。
'test'
包含一些 HTML 和 JSP 文件(我的表单 应用程序)以及 JavaScript .js 文件和 CSS 文件。'test'
还包含文件夹'WEB-INF'
,其中包含 TLD 文件, 和我的 web.xml 文件。'WEB-INF'
包含一个'lib'
文件夹,其中包含两个 .jar 文件
。'WEB-INF'
还包含'classes'
文件夹,该文件夹仅包含'helpers'
文件夹。'helpers'
文件夹包含所有 java 源代码 - 几个 servlet 和一个进行数据库通信的帮助程序类 东西。
我如何将它们导入到 Eclipse 的新项目中?
我想要导入所有内容,包括我的 js、css、jsp 和 html,而不仅仅是 java
I have several files comprising a tomcat web application that I need to import into an eclipse project so that I can easily create an EAR file from them.
I have changed the names of some folders + files for privacy reasons.
My files are currently all in the folder 'test'
.
'test'
contains some HTML and JSP files (the forms for my
application) as well as a JavaScript .js file and a CSS file.'test'
also contains the folder'WEB-INF'
which contains a TLD file,
and myweb.xml
file.'WEB-INF'
contains a'lib'
folder, withtwo .jar files
.'WEB-INF'
also contains the'classes'
folder, which merely contains
the'helpers'
folder.- The
'helpers'
folder contains all the java source code- several
servlets, and one helper class that does database communication
stuff.
How would I import these into a new project in Eclipse?
I want everything to import, including my js, css, jsp and html, not just the java
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Joseph,
从 eclipse 中,您只能从现有的 Web 应用程序导入“war”文件。如果你有war文件,你可以直接执行此操作,否则你必须创建一个Web项目并手动将你的文件添加到相应的项目文件夹中。
Joseph,
From eclipse you can import only 'war' files from the existing web application. If you have the war file you can directly do this, else you have to create a web project and manually add your files to the corresponding project folders.
好吧,我有 Eclipse Indigo,为了测试我刚刚创建了一个新项目。我右键单击项目文件夹并选择导入。
在新窗口中,我选择“常规”->“文件系统”,然后浏览到我想要的文件(无论扩展名如何)。
你指的是这个吗?
Well I have Eclipse Indigo and for testing I just created a new project. I right clicked on the project folder and selected import.
In the new window I selected General->FileSystem and then just browsed to the files I wanted (no matter the extension).
Is this what you're referring to?