资源简介
设计开发的研究生网络期刊管理系统具备的功能包括:专家模块审评作品:专家对于
分配的稿件进行评审处理;个人管理:修改个人资料;管理模块--稿件管理:对已经审批的作品进行查阅
,并告知作者;专家管理:管理员可以添加、删除专家信息;分类管理:管理员可以添加、删除分类板块
内容;编辑管理模块--编辑安排专家进行审稿,并对已审稿件进行复审;主编可以对期刊进行管理,决定
发表被录用的文章等
代码片段和文件信息
package com.action;
import java.io.IOException;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.dao.DB;
import com.orm.TAdmin;
public class admin_servlet extends HttpServlet
{
public void service(HttpServletRequest reqHttpServletResponse res)throws ServletException IOException
{
String type=req.getParameter(“type“);
if(type.endsWith(“adminMana“))
{
adminMana(req res);
}
if(type.endsWith(“adminAdd“))
{
adminAdd(req res);
}
if(type.endsWith(“adminDel“))
{
adminDel(req res);
}
}
public void adminMana(HttpServletRequest reqHttpServletResponse res) throws ServletException IOException
{
List adminList=new ArrayList();
String sql=“select * from t_admin“;
object[] params={};
DB mydb=new DB();
try
{
mydb.doPstm(sql params);
ResultSet rs=mydb.getRs();
while(rs.next())
{
TAdmin admin=new TAdmin();
admin.setUserId(rs.getInt(“userId“));
admin.setUserName(rs.getString(“userName“));
admin.setUserPw(rs.getString(“userPw“));
adminList.add(admin);
}
rs.close();
}
catch(Exception e)
{
e.printStackTrace();
}
mydb.closed();
req.setAttribute(“adminList“ adminList);
req.getRequestDispatcher(“admin/admin/adminMana.jsp“).forward(req res);
}
public void adminAdd(HttpServletRequest reqHttpServletResponse res)
{
String userName=req.getParameter(“userName“);
String userPw=req.getParameter(“userPw“);
String sql=“insert into t_admin values(??)“;
object[] params={userNameuserPw};
DB mydb=new DB();
mydb.doPstm(sql params);
mydb.closed();
req.setAttribute(“message“ “操作成功“);
req.setAttribute(“path“ “admin?type=adminMana“);
String targetURL = “/common/success.jsp“;
dispatch(targetURL req res);
}
public void adminDel(HttpServletRequest reqHttpServletResponse res)
{
System.out.println(req.getParameter(“userId“)+“**“);
String sql=“delete from t_admin where userId=“+Integer.parseInt(req.getParameter(“userId“));
object[] params={};
DB mydb=new DB();
mydb.doPstm(sql params);
mydb.closed();
req.setAttribute(“message“ “操作成功“);
req.setAttribute(“path“ “admin?type=adminMana“);
String targetURL = “/common/success.jsp“;
dispatch(targetURL req res);
}
public void dispatch(String targetURIHttpServletRequest requestHttpServletResponse response)
{
RequestDispatcher dispatch = getServletContext().getRequestDispatcher(targetURI);
try
{
dispatch.forward(request response);
return;
}
catch (ServletException e)
{
e.printStackTrace();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-03-11 19:05 336JSP投稿系统双数据库版本\
文件 1048576 2015-03-11 18:52 336JSP投稿系统双数据库版本\db_tougao_Data.MDF
文件 1048576 2015-03-11 18:52 336JSP投稿系统双数据库版本\db_tougao_Log.LDF
文件 10492416 2011-02-14 09:31 336JSP投稿系统双数据库版本\JSP投稿系统录像.avi
目录 0 2011-02-14 09:33 336JSP投稿系统双数据库版本\tougao\
文件 1306 2011-01-18 14:39 336JSP投稿系统双数据库版本\tougao\.classpath
目录 0 2011-02-14 09:33 336JSP投稿系统双数据库版本\tougao\.myeclipse\
文件 291 2011-01-17 09:26 336JSP投稿系统双数据库版本\tougao\.myme
文件 1224 2011-01-17 09:24 336JSP投稿系统双数据库版本\tougao\.project
目录 0 2011-02-14 09:33 336JSP投稿系统双数据库版本\tougao\src\
目录 0 2011-02-14 09:33 336JSP投稿系统双数据库版本\tougao\src\com\
目录 0 2015-03-11 14:40 336JSP投稿系统双数据库版本\tougao\src\com\action\
文件 3219 2011-01-17 09:30 336JSP投稿系统双数据库版本\tougao\src\com\action\admin_servlet.java
目录 0 2011-02-14 09:33 336JSP投稿系统双数据库版本\tougao\src\com\dao\
文件 2129 2011-01-17 09:29 336JSP投稿系统双数据库版本\tougao\src\com\dao\DB.java
文件 962 2010-11-03 14:41 336JSP投稿系统双数据库版本\tougao\src\com\dao\OpDB.java
目录 0 2015-03-11 14:41 336JSP投稿系统双数据库版本\tougao\src\com\orm\
文件 1228 2011-01-18 10:20 336JSP投稿系统双数据库版本\tougao\src\com\orm\User.java
目录 0 2015-03-11 14:41 336JSP投稿系统双数据库版本\tougao\src\com\service\
目录 0 2015-03-11 14:41 336JSP投稿系统双数据库版本\tougao\src\com\util\
文件 2451 2010-11-26 14:52 336JSP投稿系统双数据库版本\tougao\src\com\util\Pagination.java
目录 0 2015-03-11 15:12 336JSP投稿系统双数据库版本\tougao\WebRoot\
目录 0 2015-03-11 15:12 336JSP投稿系统双数据库版本\tougao\WebRoot\admin\
文件 61 2014-02-27 17:03 336JSP投稿系统双数据库版本\tougao\WebRoot\admin\index.jsp
文件 88 2013-03-29 12:10 336JSP投稿系统双数据库版本\tougao\WebRoot\admin\login.jsp
文件 4738 2011-01-18 17:45 336JSP投稿系统双数据库版本\tougao\WebRoot\admin\menu.jsp
文件 2844 2011-01-19 18:00 336JSP投稿系统双数据库版本\tougao\WebRoot\admin\top.jsp
目录 0 2015-03-11 14:41 336JSP投稿系统双数据库版本\tougao\WebRoot\auser\
目录 0 2011-02-14 09:33 336JSP投稿系统双数据库版本\tougao\WebRoot\auser\gonggao\
文件 2561 2011-01-17 09:50 336JSP投稿系统双数据库版本\tougao\WebRoot\auser\gonggao\gonggaoAdd.jsp
文件 2407 2011-01-17 09:50 336JSP投稿系统双数据库版本\tougao\WebRoot\auser\gonggao\gonggaoAll.jsp
............此处省略861个文件信息
评论
共有 条评论