高手们 我现在有段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);
}
} 展开
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);
}
} 展开
展开全部
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);
}
}
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);
}
}
展开全部
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);
}
if (method == 0) { //如果metod的值为0,则调用addPhoto方法
this.addPhoto(request, response);
}
if (method == 1) { //如果metod的值为1,则调用deletePhoto方法
this.deletePhoto(request, response);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
throwsServletException,IOException{this.method=Integer.parseInt(request.getParameter("method")); 抛出异常
可以理解为 即使这个SERVLET出了问题,仍然要做添加或删除的操作
可以理解为 即使这个SERVLET出了问题,仍然要做添加或删除的操作
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询