错误提示页:

我已经把SmartUpload.jar包放在了Tomcat \ lib目录下,而且换过好几个jar包,开发工具用的是EditPlus记事本
是还少做了其它什么步骤吗?
下面是源码:
文件8-1.html
<html>
<body>
<form action="8-2.jsp" method="post" enctype="multipart/form-data">
请选择文件:<input type="file" name="pic">
<input type="submit" value="上传">
</form>
</body>
</html>
文件8-2.jsp
<%@ page contentType="text/html" pageEncoding="GBK"%>
<html>
<body>
<%
SmartUpload smart=new SmartUpload();
smart.initialize(pageContext);
smart.upload();
smart.save("upload");
%>
</body>
</html>
------解决思路----------------------
很明显是你的jsp页面没有导入类包
------解决思路----------------------
把这一句加入到你的jsp 页面
<%@ page import="com.jspsmart.upload.*" %>