经过俩个星期的奋斗,易买网项目完工。在之前,实现图片的上传,走过许多弯路,原来是好多基础的知识忘记了,没把smartupload文件包添加组件jar包至WEB-INF/lib包中,在此特别重视,做下文件的上传。

第一步:创建商品实体类:

package entity;

public class easybuy_productn {
private int ep_id ;//编号
private String ep_name ;//名字
private String ep_description ;//描述
private int ep_price;//价格
private int ep_stock ;//库存
private int epc_id ;//父类id
private int epc_child_id ;//二级id
private String ep_file_name ;//文件名
private int tiaoma ;//条码号
public int getEp_id() {
return ep_id;
}
public void setEp_id(int epId) {
ep_id = epId;
}
public String getEp_name() {
return ep_name;
}
public void setEp_name(String epName) {
ep_name = epName;
}
public String getEp_description() {
return ep_description;
}
public void setEp_description(String epDescription) {
ep_description = epDescription;
}
public int getEp_price() {
return ep_price;
}
public void setEp_price(int epPrice) {
ep_price = epPrice;
}
public int getEp_stock() {
return ep_stock;
}
public void setEp_stock(int epStock) {
ep_stock = epStock;
}
public int getEpc_id() {
return epc_id;
}
public void setEpc_id(int epcId) {
epc_id = epcId;
}
public int getEpc_child_id() {
return epc_child_id;
}
public void setEpc_child_id(int epcChildId) {
epc_child_id = epcChildId;
}
public String getEp_file_name() {
return ep_file_name;
}
public void setEp_file_name(String epFileName) {
ep_file_name = epFileName;
}
public int getTiaoma() {
return tiaoma;
}
public void setTiaoma(int tiaoma) {
this.tiaoma = tiaoma;
}
}

第二步:编写sql:

//添加商品
public int Produt(String epName, String epDescription, int epPrice,
int epStock, int epcId, String epFileName,String ep_name_tiaoma) { //创建数据库的链接
con=this.getConnection(); //创建int值确认是否插入成功
int i=0; //创建sql语句
String sql="insert into easybuy_productn values(easybuy_productn_seq.nextval,?,?,?,?,?,'',?,?)"; try {
//写入sql
st=con.prepareStatement(sql);
st.setString(1, epName);
st.setString(2, epDescription);
st.setInt(3, epPrice);
st.setInt(4, epStock);
st.setInt(5, epcId);
st.setString(6, epFileName);
st.setString(7, ep_name_tiaoma); //开始执行sql
i=st.executeUpdate(); //开始判断
if(i>0){
i=1;
}else{
i=0;
}
//释放链接
this.ShiFang(rs, st, con); } catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} return i;
}

添加商品jsp页面

<h2>添加商品</h2>
<div class="manage">
<form action="manage/MyJsp.jsp" method="post" enctype="multipart/form-data">
<table class="form">
<tr>
<td class="field">描述描述:</td>
<td><input type="text" class="text" name="productName" id="productscript" value="铁三角 Audio-Technica ATH-EQ300M-SV 银色 挂耳式耳机" /></td>
</tr> <tr>
<td class="field">所属分类:</td>
<td>
<select name="parentId">
<c:forEach var="news" items="${requestScope.flist1}" >
<option value="1">${news.epc_name}</option> <c:forEach var="ck" items="${flist}" >
<c:if test="${ck.epc_parent_id == news.epc_id}">
<option value="3">${ck.epc_name}</option>
</c:if> </c:forEach>
</c:forEach> </select>
</td>
<tr>
<td class="field">头像:</td>
<td><input type="file" name="fileg" id="imgOne" onchange="preImg(this.id,'imgPre');"/></td>
</tr>
<tr>
<td>头像预览:</td>
<td><img id="imgPre" src="" style="width:150px;height:150px;display:block;"/></td>
</tr>
<tr>
<td class="field">商品价格:</td>
<td><input type="text" class="text tiny" name="productPrice" id="productPrice" /> 元</td>
</tr>
<tr>
<td class="field">名称:</td>
<td><input type="text" class="text" name="productName2" id="productName" /></td>
</tr>
<tr>
<td class="field">库存:</td>
<td><input type="text" class="text tiny" name="productName3" id="producstock"/></td>
</tr>
<tr>
<td class="field">条号码:</td>
<td><input type="text" class="text tiny" name="productName4" id="producstock"/></td>
</tr> <tr>
<td></td>
<td><label class="ui-blue"><input type="submit" name="submit" value="添加" /></label></td>
</tr>
</table>
</form>

处理页面:

<%

//----处理上传文件
/*
使用smartupload
1、添加组件jar包至WEB-INF/lib包中
2、设置form表单的提交类型为二进制类型
*/ //创建smartupload组件
SmartUpload su = new SmartUpload(); //初始化组件上下文
su.initialize(pageContext); //设置编码
su.setCharset("utf-8");
try{ //上传文件
su.upload();
}catch(Exception e){
%>
<script type="text/javascript">
alert("不允许上传:bat,exe,jsp,html,htm,java,class文件类型");
location.href="index.jsp";
</script>
<%
} //获取单个文件
File file = su.getFiles().getFile(0); //设置上传服务器的位置
String path2 = "upload\\"; //得到上传文件的名称
String filename = file.getFileName(); //上传文件的路径
path2 = path2 + filename; //保存文件
file.saveAs(path2,SmartUpload.SAVE_VIRTUAL); //获取图片显示路径
String path3="upload\\"+filename; //获取用户的名称
String productName = su.getRequest().getParameter("productName"); //获取用户的分类
int parentId = Integer.parseInt(su.getRequest().getParameter("parentId")); //获取用户价格
int productPrice=Integer.parseInt(su.getRequest().getParameter("productPrice")); //获取用户的品牌
String productName2=su.getRequest().getParameter("productName2"); //获取用户的库存
int productPrice3=Integer.parseInt(su.getRequest().getParameter("productName3")); //获取用户的条码号
String productPrice5=su.getRequest().getParameter("productName4"); //实例化添加对象
productnBiz product=new productnBizImpl(); //调用查询方法
int i=product.Produt(productName2,productName,productPrice,productPrice3,parentId,path3,productPrice5); //判断添加新闻是否成功
if(i>0){ out.print("<script>");
out.print("alert('添加成功');");
out.print("location.href='product.jsp';");
out.print("</script>"); }else{
request.getRequestDispatcher("product-add.jsp").forward(request,response);
}
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head> <title>My JSP 'Product_Add.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
--> </head> <body>
This is my JSP page. <br>
</body>
</html>

易买网之smartupload实现文件上传的更多相关文章

  1. 基于Servlet+smartUpload的文件上传

    文件上传在web应用中是非常常见的,现在我就介绍下基于servlet的文件上传,基于Struts2的文件上传可以看: 页面端代码: <%@ page language="java&qu ...

  2. SmartUpload实现文件上传

    (一)SmartUpload组件简介 SmartUpload组件 专门用于实现文件上传及下载的免费组件   (二)SmartUpload组件特点 使用简单:编写少量代码,完成上传下载功能 能够控制上传 ...

  3. SmartUpload实现文件上传时file和表单文本同时提交的问题

    JSP页面: <%@ page language="java" import="java.util.*" pageEncoding="UTF-8 ...

  4. smartUpload组件文件上传

    public class SmartUploadServlet extends HttpServlet { public void doGet(HttpServletRequest request, ...

  5. 文件上传之 MultipartFile

    利用MultipartFile(组件)实现文件上传 在java中上传文件似乎总有点麻烦,没.net那么简单,记得最开始的时候用smartUpload实现文件上传,最近在工作中使用spring的Mult ...

  6. JSP文件上传--Smartupload组件

    把smartupload.jar copy到D:\apache-tomcat-7.0.57\lib下. 创建htm上传文件:smartupload_demo01.htm 由于是上传文件,需要对表单进行 ...

  7. 文件上传--基于Spring MVC框架+SmartUpload

    这篇文章是介绍文件上传的,由于在spring MVC上实现起来和直接在servlet中写有些不同,所以特地写了一下这篇文章,关于不同点,大家可以先阅读一下上一篇文章.好了,下面直接上代码. jab包是 ...

  8. SmartUpload文件上传组件的使用教程

    在项目中使用SmartUpload组件可以进行文件的上传和下载操作 使用步骤 1.导入jar包,进行build path操作 2.编写文件上传页面,代码如下 <form action=" ...

  9. java基础篇---文件上传(smartupload组件)

    文件上传几乎是所有网站都具有的功能,用户可以将文件上传到服务器的指定文件夹中,也可以保存在数据库中,本篇主要说明smartupload组件上传. 在讲解smartupload上传前,我们先来看看不使用 ...

随机推荐

  1. 最小生成树 C - Building a Space Station

    You are a member of the space station engineering team, and are assigned a task in the construction ...

  2. T1082 线段树练习3 codevs

    http://codevs.cn/problem/1082/ 题目描述 Description 给你N个数,有两种操作: 1:给区间[a,b]的所有数增加X 2:询问区间[a,b]的数的和. 输入描述 ...

  3. Ubuntu 16.04安装XMind 8

    下载: http://www.xmind.net/download/linux/ 解压 sudo unzip xmind-8-update2-linux.zip -d xmind8 移动到/opt目录 ...

  4. ADO连接ACCESS2007及以上版本的数据库

    function getaccessstr(databasename:string;password:string;accessVer:string='access2003'):string; beg ...

  5. [Mini Programe] Upload Images

    Code for upload iamges: chooseImage: choose the images to upload previewImage: preview the image and ...

  6. logistic regression教程3

    在线性拟合的基础上,我们实现logistic regression. 如前所述,样本集是 {x1,y1},{x2,y2},...,{xn,yn}[1] 其中,xi=[1,xi,1,xi,2,xi,3, ...

  7. 打造atom成为golang开发神器

    在我在Windows系统上开发的日子里.我使用IDE开发数年之久.比如Visual Basic IDE, Borland Delphi IDE, Visual C++ 和最后的Visual Studi ...

  8. Python类私有方法的陷阱

    引言 Python不像C++.Java.C#等有明白的公共.私有或受保护的keyword来定义成员函数或属性,它使用约定的单下划线"_"和"__"双下划线作为函 ...

  9. Android与IOS异同点对照(1)------ 显示

    Android与IOS作为当前世界上最流行的两大移动端操作系统,都拥有无数的粉丝. 那么对于Android或者IOS的开发人员来说,这两个系统都拥有什么同样或者不同的地方那?如今让我们一起来了解一下A ...

  10. 桌面系统集成WEB认证系统方案

    最近做的一个项目,有WEB版.WPF版.手机版.领导想集成集团的一个现成的认证系统,姑且称这个认证系统名为 W4认证系统. W4认证系统有如下特点: 1.现成的 2.是个单点登录系统 3.不支持oAu ...