标题:[求助] 关于使用jspsmartupload出错问题
只看楼主
wang913com
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2007-2-22
 问题点数:0 回复次数:2 
[求助] 关于使用jspsmartupload出错问题

代码如下:
import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;
import com.jspsmart.upload.*;
public class servletUpload extends HttpServlet{
private ServletConfig config;
final public void init(ServletConfig config)throws ServletException {
this.config=config;}
public void doGet(HttpServletRequest request,HttpServletResponse response)throws ServletException,

IOException {
PrintWriter out=response.getWriter();
out.println("the method of the html form muse be post");}
protected void doPost(HttpServletRequest request,HttpServletResponse response) throws

ServletException,IOException {
PrintWriter out=response.getWriter();
int count=0;
SmartUpload mySmartUpload=new SmartUpload();
try{
mySmartUpload.initialize(config,request,response);
mySmartUpload.upload();
count=mySmartUpload.save(mySmartUpload.getRequest().getParameter("path"));
out.println(count+"file upload");
}
catch(Exception ex){
out.println("Unable to upload the fie<br>");
out.println("Error:" +ex.toString());
}
}
}
编译的时候出现错误如下:“无法访问javax.servlet.jsp.PageContext,未找到javax.servlet.jsp.PageContext的类文件”。
我想请问下怎么设置才能找到这个类文件

搜索更多相关主题的帖子: void request private public import 
2007-03-28 15:42
黄袖标
Rank: 4
等 级:贵宾
威 望:13
帖 子:676
专家分:0
注 册:2007-3-22
得分:0 

应该是没找到jar,add 这个jar就行了


我胡汉三又回来啦!物是人非啊,只有静夜思大大还在。
2007-03-28 15:54
wang913com
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2007-2-22
得分:0 

高手黄能具体点吗?
我是是个菜鸟
我在lib文件夹里找了,没有这个jar ,add 不了,具体是增加哪个文件?
请高手们不奢赐教

2007-03-28 16:04



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-127528-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.054464 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved