高手们 我现在有段JSP网站代码不懂 谁给我添加个注释

我都不明白谁能帮我把这段代码解释一下每句话都说明白些明天答辩用这段,谢谢了各位publicclassPhotoSerlvetextendsHttpServlet{priv... 我都不明白 谁能帮我把这段代码解释一下 每句话都说明白些 明天答辩用这段,谢谢了各位

public class PhotoSerlvet extends HttpServlet {private int method;
private PhotoDao photoDao = null;
public void doGet(HttpServletRequest request, HttpServletResponse response)
throwsServletException,IOException{this.method=Integer.parseInt(request.getParameter("method"));
if (method == 0) {
this.addPhoto(request, response);
}
if (method == 1) {
this.deletePhoto(request, response);
}
}
展开
 我来答
leyoochina
2011-04-20
知道答主
回答量:58
采纳率:0%
帮助的人:32.8万
展开全部
public class PhotoSerlvet extends HttpServlet {
private int method;
private PhotoDao photoDao = null;
public void doGet(HttpServletRequest request, HttpServletResponse response)
throwsServletException,IOException{
// 获取页面传过来的参数,参数名叫method,由于页面传进来的参数都是String类型的,
而现在需要一个int类型的,所以使用Integer.parselnt(String)方法将参数转换成int 型的
this.method=Integer.parseInt(request.getParameter("method"));
// 如果得到的参数是对应值(比如等于0),就执行if块得语句
if (method == 0) {
// 如果等于0,貌似就调用addPhoto方法,好像是添加照片的,而这个方法需要两个参数requset和response,这两个参数在doGet方法里本身就有的,那这个doGet方法是怎么来的呢
,只需要继承(extends)HttpServlet类,就可以重写doGet方法了。
this.addPhoto(request, response);
}
if (method == 1) {
// 同上,如果等于1,就调用deletePhoto方法,貌似是一个删除照片的方法,但愿你能理解
this.deletePhoto(request, response);
}
}
悲风你好
2011-04-20 · TA获得超过124个赞
知道答主
回答量:116
采纳率:0%
帮助的人:101万
展开全部
this.method=Integer.parseInt(request.getParameter("method")); //使用request对象获取页面表单中名为method元素的值,并将该值转化为int类型
if (method == 0) { //如果metod的值为0,则调用addPhoto方法
this.addPhoto(request, response);
}
if (method == 1) { //如果metod的值为1,则调用deletePhoto方法
this.deletePhoto(request, response);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wangle11111
2011-04-20 · TA获得超过161个赞
知道小有建树答主
回答量:136
采纳率:0%
帮助的人:135万
展开全部
throwsServletException,IOException{this.method=Integer.parseInt(request.getParameter("method")); 抛出异常
可以理解为 即使这个SERVLET出了问题,仍然要做添加或删除的操作
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式