Topic: 刚开始学Tomcat,对javax.servlet软件包不理解! |
Print this page |
1.刚开始学Tomcat,对javax.servlet软件包不理解! | Copy to clipboard |
Posted by: 科大梦之队 Posted on: 2005-10-30 14:14 这是斑竹的一个例子,我照做了一下! package test; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class Test extends HttpServlet { protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { PrintWriter out=response.getWriter(); out.println("<html><body><h1>This is a servlet test.</h1></body></html>"); out.flush(); } } 结果却是: G:\JavaBar\JCroJ\Test.java:4: 软件包 javax.servlet 不存在 import javax.servlet.ServletException; ^ G:\JavaBar\JCroJ\Test.java:5: 软件包 javax.servlet.http 不存在 import javax.servlet.http.HttpServlet; ^ G:\JavaBar\JCroJ\Test.java:6: 软件包 javax.servlet.http 不存在 import javax.servlet.http.HttpServletRequest; ^ G:\JavaBar\JCroJ\Test.java:7: 软件包 javax.servlet.http 不存在 import javax.servlet.http.HttpServletResponse; ^ G:\JavaBar\JCroJ\Test.java:8: 找不到符号 符号: 类 HttpServlet public class Test extends HttpServlet { ^ G:\JavaBar\JCroJ\Test.java:9: 找不到符号 符号: 类 HttpServletRequest 位置: 类 test.Test protected void doGet(HttpServletRequest request, HttpServletResponse response) ^ G:\JavaBar\JCroJ\Test.java:9: 找不到符号 符号: 类 HttpServletResponse 位置: 类 test.Test protected void doGet(HttpServletRequest request, HttpServletResponse response) ^ G:\JavaBar\JCroJ\Test.java:10: 找不到符号 符号: 类 ServletException 位置: 类 test.Test throws ServletException, IOException { ^ 8 错误 Process completed. 我做的其它也出现类似问题,请问是JDK,还是什么问题?我现在用的是j2se1.5,请大家指导一下! |
2.Re:刚开始学Tomcat,对javax.servlet软件包不理解! [Re: 科大梦之队] | Copy to clipboard |
Posted by: Kappa Posted on: 2005-10-30 18:11 J2EE 1.4 SDK装了吗? |
3.Re:刚开始学Tomcat,对javax.servlet软件包不理解! [Re: 科大梦之队] | Copy to clipboard |
Posted by: 科大梦之队 Posted on: 2005-10-31 19:22 我想问下,如果有了Tomcat,j2ee1.4还需要装吗?我今天装了整整一个下午,但是总是运行不成功,如果有朋友能够指点一下,十分感激~ 我今天刚装了j2eesdk-1_4_02_2005Q2-windows,这个安装文件集合了 Sun Java System Application Server Platform Edition 8.1 2005Q2 UR2 J2SE 5.0 J2EE 1.4 SDK Samples 2005Q2 UR2 J2EE 1.4 API Documentation 哪位高手装过,请指教一下,怎么设置环境变量以及怎么启动等,请详细说明设置都成功后,怎么测试,出现什么结果说明完全成功了,谢谢! |
4.Re:刚开始学Tomcat,对javax.servlet软件包不理解! [Re: 科大梦之队] | Copy to clipboard |
Posted by: 科大梦之队 Posted on: 2005-11-01 17:12 第一问题,我知道答案了,因为我的classpath中,没有加上servlet-api.jar,下面的安装还是不会! |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |