资源简介
练习作,含数据库文件,可完美运行,就是功能太少,包含数据库基本的增删改查,技术含量不大,正在学习相关技术的人可下载参考

代码片段和文件信息
package Insert;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.jspsmart.upload.SmartUpload;
import com.jspsmart.upload.SmartUploadException;
import com.mysql.jdbc.Statement;
public class insertGuochuang extends HttpServlet {
/**
* Constructor of the object.
*/
public insertGuochuang() {
super();
}
/**
* Destruction of the servlet.
*/
public void destroy() {
super.destroy(); // Just puts “destroy“ string in log
// Put your code here
}
/**
* 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 {
this.doPost(request response);
}
/**
* 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 {
response.setCharacterEncoding(“utf-8“);//字符编码utf-8
response.setContentType(“text/html“);
PrintWriter out = response.getWriter();
SmartUpload su=new SmartUpload();
su.initialize(this.getServletConfig()requestresponse);
su.setMaxFileSize(1024*1024*10); //上传图大小最大为10M
su.setAllowedFilesList(“jpgpnggif“);//支持格式
try {
su.upload();
String savepath=request.getSession().getServletContext().getRealPath(“/“)+“images\\main“; //request.getSession().getServletContext().getRealPath(“/“)取得整个web应用的物理根路径(注意不是jsp项目根路径)
su.save(savepath);
String image=“images/main/“+su.getFiles().getFile(0).getFileName();//-
String time=su.getRequest().getParameter(“time“);//-
String drama=su.getRequest().getParameter(“drama“);//-
String information=su.getRequest().getParameter(“information“);//-
String author=su.getRequest().getParameter(“author“);//-
String name=su.getRequest().getParameter(“name“);//-
String uname=“root“;
String pwd=“123456“;
String url=“jdbc:mysql://localhost:3306/dongman“;
Class.forName(“com.mysql.jdbc.Driver“);
Connection conne
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-03-16 10:47 Project_Comics\
文件 529 2017-12-21 18:42 Project_Comics\.classpath
文件 315 2017-12-24 14:13 Project_Comics\.myme
文件 1757 2017-12-21 18:46 Project_Comics\.project
目录 0 2019-03-16 10:47 Project_Comics\.settings\
文件 500 2017-12-21 18:43 Project_Comics\.settings\.jsdtscope
文件 260 2018-08-15 14:20 Project_Comics\.settings\org.eclipse.core.resources.prefs
文件 364 2017-12-21 18:42 Project_Comics\.settings\org.eclipse.jdt.core.prefs
文件 480 2017-12-21 18:42 Project_Comics\.settings\org.eclipse.wst.common.component
文件 252 2017-12-21 18:42 Project_Comics\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2017-12-21 18:42 Project_Comics\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2017-12-21 18:42 Project_Comics\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2019-03-16 10:47 Project_Comics\WebRoot\
目录 0 2019-03-16 10:47 Project_Comics\WebRoot\me
文件 36 2017-12-21 18:42 Project_Comics\WebRoot\me
目录 0 2019-03-16 10:47 Project_Comics\WebRoot\WEB-INF\
目录 0 2019-03-16 10:47 Project_Comics\WebRoot\WEB-INF\classes\
目录 0 2019-03-16 10:47 Project_Comics\WebRoot\WEB-INF\classes\Insert\
文件 4224 2018-12-25 20:48 Project_Comics\WebRoot\WEB-INF\classes\Insert\insertGuochuang.class
文件 4208 2018-12-25 20:48 Project_Comics\WebRoot\WEB-INF\classes\Insert\insertMovie.class
文件 4224 2018-12-25 20:48 Project_Comics\WebRoot\WEB-INF\classes\Insert\insertRecommend.class
文件 4208 2018-12-25 20:48 Project_Comics\WebRoot\WEB-INF\classes\Insert\insertRiman.class
目录 0 2019-03-16 10:47 Project_Comics\WebRoot\WEB-INF\classes\MyFilter\
文件 2064 2018-12-25 20:48 Project_Comics\WebRoot\WEB-INF\classes\MyFilter\userfilter.class
目录 0 2019-03-16 10:47 Project_Comics\WebRoot\WEB-INF\classes\MyJavaBean\
文件 1273 2018-12-25 20:48 Project_Comics\WebRoot\WEB-INF\classes\MyJavaBean\Cartoon.class
文件 2275 2018-12-25 20:48 Project_Comics\WebRoot\WEB-INF\classes\MyJavaBean\GuoChuang.class
文件 2259 2018-12-25 20:48 Project_Comics\WebRoot\WEB-INF\classes\MyJavaBean\Movie.class
文件 935 2018-12-25 20:48 Project_Comics\WebRoot\WEB-INF\classes\MyJavaBean\MyConnection.class
文件 2275 2018-12-25 20:48 Project_Comics\WebRoot\WEB-INF\classes\MyJavaBean\Recommend.class
文件 2259 2018-12-25 20:48 Project_Comics\WebRoot\WEB-INF\classes\MyJavaBean\RiMan.class
............此处省略184个文件信息
- 上一篇:Android骰子游戏案例源码.
- 下一篇:java程序设计--售票系统
相关资源
- 美食天下项目Android版源码和Web版源码
- JSP企业人事管理系统设计(源代码+论
- java代码编写将excel数据导入到mysql数据
- 实现一个图书管理系统
- JAVA JSP公司财务管理系统 源代码 论文
- JSP+MYSQL旅行社管理信息系统
- JSP,SQL,MVC的选课系统
- 基于JSP的学生宿舍管理系统(源码 数
- JSP选课管理系统
- mysql jsp网站源码下载
- JSP做的化妆品商城
- Jsp购物车实例
- 基于JSP的校友信息管理系统(添加数
- 基于jsp的bbs论坛 非常详细
- java Servlet投票实例
- jsp oracle通讯录
- JSP学生信息管理系统 Mysql数据库
- 使用jsp servlet做的投票系统
- android通过JDBC连接Mysql数据库
- JSP登陆验证 实现JSP用户名 密码 验
- jsp基于servlet 图书馆管理系统
- jsp学生成绩管理系统.rar
- 在线考试系统源代码(jsp)
- 超级好的纯jsp写的聊天室
- JSP 网上购物网页项目
- JSP+mysql新闻发布系统.rar
- jsp 学生信息管理系统设计与实现
- jsp与SQL Server数据库实现的客户注册登
- 简易教学管理系统(jsp spring struts h
- 学生信息管理系统 JSP MySQL
评论
共有 条评论