I've recently tried to use part of a code of a JSP file, found online, which starts by importing:
<%@ page import = "org.apache.commons.fileupload.*" %>
<%@ page import = "org.apache.commons.fileupload.disk.*" %>
<%@ page import = "org.apache.commons.fileupload.servlet.*" %>
<%@ page import = "org.apache.commons.io.output.*" %>
but Eclipse warns me with the error: " The import org.apache cannot be resolved. "
I tried to copy paste in the path
"C:\Users\MyPc\Downloads\apache-tomcat-7.0.96-windows-x64\apache-tomcat-7.0.96\webapps\SL2\WEB-INF\lib
the folder "commons-fileupload-1.4" once extracted, downloaded by the link: http://commons.apache.org/proper/commons-fileupload/download_fileupload.cgi
and yet the error keep remaining. What do I mistake?