public class ShangpinAction extends PageActionBase { public void onLoad() { String actiontype = request.getParameter("actiontype"); System.out.println("actiontype=" + actiontype); if (actiontype == null) return ; if(actiontype.equals("hasExist")){ hasExist(); } } private void hasExist() { String spno=request.getParameter("spno"); String strres="true"; if(DALBase.isExist("shangpin", "where spno='"+spno.trim()+"'")){ strres="false"; }else { strres="true"; } try { System.out.println("商品编号存在性="+strres); response.getWriter().write(strres); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } /******************************************************** ****************** 信息注销监听支持***************************** *********************************************************/ public void delete() { String id = request.getParameter("id"); DALBase.delete("shangpin", " where id=" + id); binding(); }每一行代码的解释
时间: 2023-08-12 16:09:27 浏览: 63
这段代码是一个Java类,名为ShangpinAction,继承了PageActionBase类。它包含了两个方法:onLoad()和hasExist(),还有一个delete()方法。
onLoad()方法中,首先获取了一个名为actiontype的参数,并将其打印输出。如果actiontype为空,则直接返回。如果actiontype的值为"hasExist",则调用hasExist()方法。
hasExist()方法中,首先获取了一个名为spno的参数。然后,通过DALBase.isExist()方法判断数据库表shangpin中是否存在商品编号为spno的记录。如果存在,则将返回结果设为"false",否则设为"true"。最后,将返回结果写入response中。
delete()方法中,首先获取一个名为id的参数。然后使用DALBase.delete()方法删除shangpin表中id为传入参数id的记录。最后调用binding()方法。
相关问题
public class UsersAction extends PageActionBase { public void onLoad() { String actiontype = request.getParameter("actiontype"); System.out.println("actiontype=" + actiontype); if (actiontype == null) return ; // 登录 if (actiontype.equals("login")) { login(); } if (actiontype.equals("exit")) { exit(); } } private void exit() { Object u = request.getSession().getAttribute("adminuser"); if (u != null) request.getSession().removeAttribute("adminuser"); try { request.getRequestDispatcher("/admin/login.jsp").forward(request, response); } catch (ServletException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } }解释每一行代码
这段代码是一个 Java 类,名为 UsersAction,继承自 PageActionBase。该类定义了一个 onLoad() 方法,用于处理请求。下面是每一行代码的解释:
1. `public class UsersAction extends PageActionBase {`
定义一个公共类 `UsersAction`,继承自 `PageActionBase` 类。
2. `public void onLoad() {`
定义一个公共的无返回值的方法 `onLoad()`,用于处理请求。
3. `String actiontype = request.getParameter("actiontype");`
获取请求参数中名为 "actiontype" 的值,并将其赋值给 `actiontype` 变量。
4. `System.out.println("actiontype=" + actiontype);`
输出 `actiontype` 变量的值到控制台。
5. `if (actiontype == null) return ;`
如果 `actiontype` 变量的值为 null,直接返回。
6. `if (actiontype.equals("login")) { login(); }`
如果 `actiontype` 变量的值等于 "login",调用 `login()` 方法。
7. `if (actiontype.equals("exit")) { exit(); }`
如果 `actiontype` 变量的值等于 "exit",调用 `exit()` 方法。
8. `private void exit() {`
定义一个私有的无返回值的方法 `exit()`,用于退出登录。
9. `Object u = request.getSession().getAttribute("adminuser");`
获取当前会话中名为 "adminuser" 的属性,并将其赋值给 `u` 变量。
10. `if (u != null) request.getSession().removeAttribute("adminuser");`
如果 `u` 变量不为 null,则从当前会话中删除名为 "adminuser" 的属性。
11. `try { request.getRequestDispatcher("/admin/login.jsp").forward(request, response); }`
尝试将请求转发到路径为 "/admin/login.jsp" 的 JSP 页面。
12. `catch (ServletException e) { e.printStackTrace(); }`
捕获可能抛出的 ServletException 异常,并输出异常信息到控制台。
13. `catch (IOException e) { e.printStackTrace(); } }`
捕获可能抛出的 IOException 异常,并输出异常信息到控制台。
public class AlbumitemAction extends PageActionBase { @Override public void onLoad() { String actiontype = request.getParameter("actiontype"); System.out.println("actiontype=" + actiontype); if (actiontype == null) return; } public void delete() { String id = request.getParameter("id"); DALBase.delete("albumitem", " where id=" + id); binding(); } public void save() { String forwardurl = request.getParameter("forwardurl"); String errorurl = request.getParameter("errorurl"); String tupian = request.getParameter("tupian"); String albumid = request.getParameter("albumid"); SimpleDateFormat sdfalbumitem = new SimpleDateFormat("yyyy-MM-dd"); Albumitem albumitem = new Albumitem(); albumitem.setTupian(tupian == null ? "" : tupian); albumitem.setAlbumid(albumid == null ? "" : albumid); DALBase.save(albumitem); if (forwardurl == null) { forwardurl = "/admin/albumitemmanager.do?actiontype=get"; } try { response.sendRedirect(SystemParam.getSiteRoot() + forwardurl); } catch (Exception e) { e.printStackTrace(); } }翻译这段代码
这段代码是一个Java类,名为AlbumitemAction,继承了PageActionBase类。其中包括了三个方法:onLoad()、delete()和save()。
在onLoad()方法中,首先获取了名为“actiontype”的请求参数,然后打印出来。如果这个参数为null,则直接返回。
在delete()方法中,首先获取了名为“id”的请求参数,然后使用DALBase类中的delete()方法删除了“albumitem”表中id为该参数值的记录,最后调用了binding()方法。
在save()方法中,首先获取了名为“forwardurl”、“errorurl”、“tupian”和“albumid”的请求参数。然后创建了一个Albumitem对象,并分别将这些参数设置为对象的属性值。接着使用DALBase类中的save()方法将对象保存到数据库中。如果“forwardurl”参数为null,则设置默认值为“/admin/albumitemmanager.do?actiontype=get”。最后使用response对象的sendRedirect()方法将页面重定向到“forwardurl”参数指定的页面。如果发生异常,则打印出堆栈跟踪信息。