资源简介
练习作,含数据库文件,可完美运行,就是功能太少,包含数据库基本的增删改查,技术含量不大,正在学习相关技术的人可下载参考
代码片段和文件信息
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程序设计--售票系统
相关资源
- JSP+MySQL学生成绩管理系统116603
- java web实验室管理系统 毕业设计
- 一本糊涂账
- jsp+SQL server 2000 网上书店
- 工资管理系统简单jsp项目+jquery
- Java+Mysql+Swing即时聊天系统,公、私聊
- 网上书店系统(jspservletsqlserver)130
- JAVA GUI火车票管理系统JAVA+MySQLJava Sw
- Java图书管理系统,jsp+Servlet利用mvc模
- struts2+mysql增删改查
- 人事管理系统1
- JSP+access 电子商务新闻发布商品展示网
- 基于JAVA和MySQL的商品销售管理系统(
- 网上宠物商店系统JSP+JavaBean+JDBC
- jsp网络编程从基础到实践(第2版)
- 教学管理系统jsp+dbfound
- 学生作业管理平台jsp+mysql+dbfound升级版
- jsp 教务管理系统
- mysql-connector-java-8.0.12
-
jsp和xm
l实现的在线相册系统 - 通用在线考试系统 JSP+Servlet+MySQL
- JSP+ACCESS毕业设计网上书店系统
- 基于javaweb+mysql的火车购票系统
- 本科生毕业设计 基于jsp的小型旅游网
- JSP+MYSQL软件缺陷管理系统的设计与实
- Java和MySQL编写的简单手机销售管理系
- 基于IP端口的聊天室
- JAVA swing+mysql 进销存管理系统暑期中软
- JSP-servlet-struts-sqlserver开发的网上购物
- jsp技术开发的精品课程网站源代码
评论
共有 条评论