• 大小: 148KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-09
  • 语言: Java
  • 标签: JSP  Servlet  数据库  

资源简介

一个简易的库存商品管理系统使用JSP+Servlet+数据库 (1)、需求描述: ①管理员登录 ②列出所有库存商品的名称、规格、库存件数、单价 ③可以对库存记录做增加、修改和删除。 ④点“新加商品”按钮,跳到下页进行新加商品 ⑤删除前需要用户确认 ⑥在每行的修改链接中,链接到本行记录的修改页面 ⑦当“库存件数”少于10件的时候,数字显示为红色 ⑧商品增加(修改)成功后,页面回到管理员查看库存页,并刷新列表数据; ⑨所有字段均为必填项,件数、单价为数字项,提交数据之前,应进行充分的检查; ⑩保存记录的时候,程序检测如果该件商品已有记录(即:名称、规格、单价都相同的商品),则在原有库存上累加,否则

资源截图

代码片段和文件信息

package com.qbsp.servlet;

import java.io.IOException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.qbsp.util.DBUtil;

public class AddProduct extends HttpServlet {

private Connection conn;
public void doPost(HttpServletRequest request HttpServletResponse response)
throws ServletException IOException {
request.setCharacterEncoding(“gbk“);
response.setContentType(“text/html;charset=gbk“);

String name = request.getParameter(“name“);
String norms = request.g

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-08-16 18:08  Product\
     文件           0  2020-08-05 14:54  Product\2020.txt
     目录           0  2013-08-16 18:07  Product\ProductManageSystem\
     文件         484  2013-08-15 13:55  Product\ProductManageSystem\.classpath
     目录           0  2020-08-05 16:17  Product\ProductManageSystem\.myeclipse\
     文件         330  2013-08-15 10:32  Product\ProductManageSystem\.mymetadata
     文件        1425  2013-08-15 10:55  Product\ProductManageSystem\.project
     目录           0  2013-08-16 18:07  Product\ProductManageSystem\.settings\
     文件         500  2013-08-15 10:32  Product\ProductManageSystem\.settings\.jsdtscope
     文件         330  2013-08-15 10:32  Product\ProductManageSystem\.settings\org.eclipse.jdt.core.prefs
     文件          49  2013-08-15 10:32  Product\ProductManageSystem\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2013-08-15 10:32  Product\ProductManageSystem\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2013-08-16 18:07  Product\ProductManageSystem\WebRoot\
     目录           0  2013-08-16 18:07  Product\ProductManageSystem\WebRoot\meta-INF\
     文件          36  2013-08-15 10:32  Product\ProductManageSystem\WebRoot\meta-INF\MANIFEST.MF
     目录           0  2013-08-16 18:07  Product\ProductManageSystem\WebRoot\WEB-INF\
     目录           0  2013-08-16 18:07  Product\ProductManageSystem\WebRoot\WEB-INF\classes\
     目录           0  2013-08-16 18:07  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\
     目录           0  2013-08-16 18:07  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\
     目录           0  2013-08-16 18:07  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\
     文件        3026  2013-08-15 18:14  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\AddProduct.class
     文件        4097  2013-08-16 17:45  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\UserLogin.class
     文件        2965  2013-08-15 15:51  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\UserRegister.class
     文件        3117  2013-08-16 10:24  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\ViewProduct.class
     文件        2045  2013-08-16 10:44  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\deleProduct.class
     文件        2059  2013-08-16 13:35  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\servlet\updateProduct.class
     目录           0  2013-08-16 18:07  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\util\
     文件        1402  2013-08-15 14:10  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\util\DBUtil.class
     文件        1479  2013-08-15 17:25  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\util\Product.class
     文件         734  2013-08-15 14:46  Product\ProductManageSystem\WebRoot\WEB-INF\classes\com\qbsp\util\User.class
     目录           0  2020-08-05 16:17  Product\ProductManageSystem\WebRoot\WEB-INF\lib\
............此处省略25个文件信息

评论

共有 条评论