showtopicaction.java.bak
来自「bbs struts」· BAK 代码 · 共 14 行
BAK
14 行
public class ShowTopicAction extends Action {
DBTopicFactory fa= getInstantce();
public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
int topicId = Integer.Parse(request.getParameter("topicId"));
DBTopicFactory fa= getInstantce();
Topic topic=fa.listTopic(topicId);
request.setAttribute("topic",topic);
return (mapping.findForward("showTopic"));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?