Today you are going to learn
How to import a war file in to eclipse
Sometimes you have downloaded some sample war files from internet but you don't know how to deploy a war file. here i give the methods.
Using Eclipse
To Download latest version of eclipse
In order to view links, you must have to reply to this thread.
To import a war file,first create an empty webapplication project by going through this path
File->New->Dynamic web project->Give any name and click ok.After Project is created,Right click the newly created Project->Import->War file->Browse->Click Finish.All done you have imported a war file now you can easily deploy the file by running the project.
Using Tomcat
In Tomcat just copy the war file in webapps directory and restart the server, it will extract itself,then you can deploy it.
Happy coding