资源简介
刚完成的项目,内附有现成的代码和数据库,下载即可用。
代码片段和文件信息
package c;
import c.DBConn;
import c.UserDao;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.SQLException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class chart extends HttpServlet {
/**
* Constructor of the object.
*/
public chart() {
super();
}
/**
* The doGet method of the servlet.
*
* This method is called when a form has its tag value method equals to get.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doGet(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException {
doPost(requestresponse);
}
/**
* The doPost method of the servlet.
*
* This method is called when a form has its tag value method equals to post.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if an error occurred
* @throws IOException if an error occurred
*/
public void doPost(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException {
String basePath = this.getServletContext().getRealPath(“/“);
UserDao userDao = new UserDao();
Connection conn = null;
conn = DBConn.getConn();
String strFlag = request.getParameter(“flag“);
try{
if(“bar“.equals(strFlag)){
userDao.createBar(request response basePath+“chart\\chartBar.jpg“);
}else if(“pie“.equals(strFlag)){
userDao.createPie(request response basePath+“chart\\chartPie.jpg“);
}
}catch(Exception e){
e.printStackTrace();
}finally{
if(conn != null){
try {
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-01-12 11:10 s2\
文件 6148 2019-01-12 11:10 s2\.DS_Store
目录 0 2019-01-12 11:11 __MACOSX\
目录 0 2019-01-12 11:11 __MACOSX\s2\
文件 120 2019-01-12 11:10 __MACOSX\s2\._.DS_Store
目录 0 2012-11-19 20:42 s2\WebRoot\
文件 712 2012-11-19 08:27 s2\WebRoot\left.jsp
目录 0 2019-01-12 11:11 __MACOSX\s2\WebRoot\
文件 172 2012-11-19 08:27 __MACOSX\s2\WebRoot\._left.jsp
文件 807 2012-11-19 08:27 s2\WebRoot\mainfr
文件 172 2012-11-19 08:27 __MACOSX\s2\WebRoot\._mainfr
文件 1467 2012-11-19 08:27 s2\WebRoot\request.jsp
文件 172 2012-11-19 08:27 __MACOSX\s2\WebRoot\._request.jsp
文件 1130 2012-11-19 08:27 s2\WebRoot\top.jsp
文件 172 2012-11-19 08:27 __MACOSX\s2\WebRoot\._top.jsp
文件 575 2012-11-19 08:27 s2\WebRoot\error.jsp
文件 172 2012-11-19 08:27 __MACOSX\s2\WebRoot\._error.jsp
文件 1401 2012-11-19 08:27 s2\WebRoot\liu.jsp
文件 172 2012-11-19 08:27 __MACOSX\s2\WebRoot\._liu.jsp
目录 0 2012-11-19 20:14 s2\WebRoot\file\
文件 285 2012-11-19 08:27 s2\WebRoot\file\agreement.txt
目录 0 2019-01-12 11:11 __MACOSX\s2\WebRoot\file\
文件 172 2012-11-19 08:27 __MACOSX\s2\WebRoot\file\._agreement.txt
文件 172 2012-11-19 20:14 __MACOSX\s2\WebRoot\._file
文件 3487 2012-11-19 08:27 s2\WebRoot\yonghu.jsp
文件 172 2012-11-19 08:27 __MACOSX\s2\WebRoot\._yonghu.jsp
文件 1135 2012-11-19 08:27 s2\WebRoot\response1.jsp
文件 172 2012-11-19 08:27 __MACOSX\s2\WebRoot\._response1.jsp
目录 0 2013-01-11 21:29 s2\WebRoot\chart\
文件 172 2013-01-11 21:29 __MACOSX\s2\WebRoot\._chart
文件 2972 2012-11-19 08:27 s2\WebRoot\userupd.jsp
............此处省略150个文件信息
- 上一篇:图书管理信息系统毕业设计源代码
- 下一篇:银行各功能实现 登录 转账 增删改查员工
相关资源
- JAVA课设《学生信息+选课管理系统》链
- 汽车出租管理系统
- 电影票管理系统.rar
- jsp+servlet+mysql员工管理系统
- 基于JSP easyUI的学生社团管理系统 学年
- 员工信息管理系统
- 博客管理系统
- 教务后台管理系统
- 邮件系统源码
- 登陆注册JSP+MySQL页面
- jsp开发的《校友录》系统
- 传智书城前端JSP代码
- 基于MysqlTomcat的web开发,包含用户注册
- 酒店管理系统+mysql代码+项目报告.zi
- jsp与servlet实现购物车
- 使用JSP+Servlet+JavaBean的MVC开发模式实现
- JSP+servlet+javabean服装管理系统
- 图书销售系统
- jsp网上招标系统(源码+数据库+论文)
- 最新mysql8.0.11的c3p0的3个jar包
- java 数据库 图书借阅管理系统
- jsp酒店管理系统
- java+jsp+mysql 学生信息管理系统
- 用户管理系统174439
- JSP聊天室源码+文档
- 用jsp实现的web项目:汽车销售网
- 在线电影院购票系统源码!基于jsp+
- 大学生就业求职网
- JAVA JSP医院门诊管理系统
- jsp+servlet+MySql银行管理系统
评论
共有 条评论