计算机毕业设计介绍:
4.1 index(系统主界面)
在IE里运行本系统,出现系统的主界面,包括论坛板块、问题内容、搜索内容以及内容发布等。
代码实现过程如下:
public class catelog_servlet extends HttpServlet
{
public void service(HttpServletRequest req,HttpServletResponse res)throws ServletException, IOException
{
String type=req.getParameter("type");
if(type.endsWith("catelogAdd"))
{
catelogAdd(req, res);
}
if(type.endsWith("catelogDel"))
{
catelogDel(req, res);
}
if(type.endsWith("catelogMana"))
{
catelogMana(req, res);
}
if(type.endsWith("catelogAll"))
{
catelogAll(req, res);
}
if(type.endsWith("catelogDetail"))
{
catelogDetail(req, res);
}
}
public void catelogAdd(HttpServletRequest req,HttpServletResponse res)
{
String name=req.getParameter("name");
String jieshao=req.getParameter("jieshao");
String del="no";
String sql="insert into t_catelog values(?,?,?)";
Object[] params={name,jieshao,del};
DB mydb=new DB();
mydb.doPstm(sql, params);
mydb.closed();
req.setAttribute("message", "操作成功");
req.setAttribute("path", "catelog?type=catelogMana");
String targetURL = "/common/success.jsp";
dispatch(targetURL, req, res);
}
〖资料来源:计算机毕业论文 www.xiaoniu168.com〗
第5页为计算机毕业论文部分......