<html>
<head>
<title>添加产品</title>
</head>
<html:errors property="error.add"/>
<html:errors property="error.type" />
<html:errors property="error.size" />
<body>
<html:form action="/addProduct.do?method=addProduct" method="post"
enctype="multipart/form-data" >
产品图片:<html:file property="file"></html:file>
<html:submit value="添加" />
</html:form>
</body>
</html>
---------------------------------------------------------------------
public ActionForward addProduct(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
ProductForm productForm = (ProductForm) form;
Product product = productForm.getProduct();
FormFile file = productForm.getFile();
ActionErrors errors = new ActionErrors();
try {
// 设置只能上传图片类型的文件
if (!file.getContentType().equals("image/pjpeg")) {
errors.add("error.type",
new ActionMessage("你选择的文件类型错误!", false));
this.addErrors(request, errors);
return new ActionForward(mapping.getInput());
}
// 设置上传文件的大小
int maxFileSize = 3 * 1024 * 1024;
if (file.getFileSize() > maxFileSize) {
errors.add("error.size", new ActionMessage("你选择的文件过大!", false));
this.addErrors(request, errors);
return new ActionForward(mapping.getInput());
}
// 获得服务器存放上传文件的绝对路径
String dir = this.getServlet().getServletContext().getRealPath(
"images");
// 获得上传的文件名
String fileName = file.getFileName();
// 用当前时间作为上传的新文件名
String newFileName = DataDefine.getDateId()
+ fileName.substring(fileName.lastIndexOf("."));
// 存储到数据中图片的路径
String imagePath = "images" + "/" + newFileName;
public ActionForward addProduct(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
ProductForm productForm = (ProductForm) form;
Product product = productForm.getProduct();
FormFile file = productForm.getFile();
ActionErrors errors = new ActionErrors();
try {
// 设置只能上传图片类型的文件
if (!file.getContentType().equals("image/pjpeg")) {
errors.add("error.type",
new ActionMessage("你选择的文件类型错误!", false));
this.addErrors(request, errors);
return new ActionForward(mapping.getInput());
}
// 设置上传文件的大小
int maxFileSize = 3 * 1024 * 1024;
if (file.getFileSize() > maxFileSize) {
errors.add("error.size", new ActionMessage("你选择的文件过大!", false));
this.addErrors(request, errors);
return new ActionForward(mapping.getInput());
}
// 获得服务器存放上传文件的绝对路径
String dir = this.getServlet().getServletContext().getRealPath(
"images");
// 获得上传的文件名
String fileName = file.getFileName();
// 用当前时间作为上传的新文件名
String newFileName = DataDefine.getDateId()
+ fileName.substring(fileName.lastIndexOf("."));
// 存储到数据中图片的路径
String imagePath = "images" + "/" + newFileName;
详细代码2:
Java代码
// 获得文件输入流
InputStream is = file.getInputStream();
// 创建文件输出流
OutputStream os = new FileOutputStream(dir + File.separator
+ newFileName);
byte[] buffer = new byte[1024];
int b = 0;
while ((b = is.read(buffer, 0, 1024)) != -1) {
os.write(buffer, 0, b);
}
// 添加至数据库
product.setImagePath(imagePath);
boolean isFlag = productBiz.addProduct(product);
if (!isFlag) {
errors.add("error.add", new ActionMessage("添加产品失败!", false));
this.addErrors(request, errors);
return new ActionForward(mapping.getInput());
}
request.setAttribute("message", "添加产品成功");
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
file.destroy();
}
return mapping.findForward("success");
分享到:
相关推荐
这篇博客文章提供的"struts2文件上传下载源代码"旨在帮助开发者理解和实现这些功能。 文件上传功能允许用户从他们的设备上传文件到服务器。在Struts2中,这通常通过表单实现,表单包含一个`<input type="file">`...
学习Struts2文件上传不仅需要掌握上述概念和技术,还需要了解文件安全性、异常处理和服务器配置等相关知识。在实际应用中,确保文件上传的健壮性和安全性是至关重要的,比如防止文件覆盖、大小限制、非法文件类型...
这个压缩包包含了实现Struts2文件上传所需的全部jar包,这些库文件对于理解和实现文件上传功能至关重要。 首先,我们要了解Struts2文件上传的基本流程。当用户通过表单提交包含文件输入字段的请求时,Struts2框架会...
首先,我们需要了解Struts2中的文件上传机制。Struts2提供了`FileUploadInterceptor`拦截器来处理文件上传请求。在处理文件上传时,开发者需要在Action类中声明一个`List<FileInfo>`类型的字段,用于接收上传的文件...
Struts2 文件上传是Web开发中的一个重要功能,它允许用户通过网页上传文件到服务器。Struts2 是一个基于MVC(Model-View-Controller)设计模式的Java Web框架,提供了丰富的特性和强大的控制层功能,使得文件上传...
Struts2 文件上传是Web开发中的一个重要功能,它允许用户从他们的本地计算机向服务器传输文件。在Struts2框架中,文件上传是通过特定的拦截器实现的,这些拦截器处理了文件上传请求并提供了安全性和大小限制。下面将...
1. **Struts2文件上传概述** 在Struts2中,文件上传主要依赖于Apache的Commons FileUpload库。这个库提供了处理HTTP多部分请求(用于上传文件)的能力。首先,你需要在项目中引入对应的依赖,通常是Apache Commons ...
在“struts2文件上传例子.rar”这个项目中,开发者已经使用Struts2.0框架实现了一个简单的文件上传功能。MyEclipse 6.6是一个集成开发环境,支持Java EE项目开发,可以直接导入该项目进行运行和调试。 首先,我们...
在这个"Struts2之struts2文件上传详解案例struts011"中,我们将深入探讨如何实现这一功能。 首先,我们需要了解Struts2中的Action类,它是处理用户请求的核心组件。为了支持文件上传,我们需要创建一个继承自`org....
1. **.struts2配置**:在Struts2框架中,需要在`struts.xml`配置文件中添加相应的action配置,声明文件上传的处理方法。通常,你需要设置`<result>`类型为`stream`,以便处理上传的文件。 2. **Action类**:创建一...
本文将详细讲解Struts2文件上传的实现原理以及源码分析。 首先,理解文件上传的基本流程。当用户通过HTML表单选择文件并提交时,这些文件数据会被封装到HTTP请求中。Struts2框架提供了内置的支持来处理这样的请求,...
在Struts2中,文件上传和下载是常见的功能需求,对于用户交互和数据交换至关重要。以下是对这些知识点的详细阐述: 1. **文件上传**: 在Struts2中,文件上传主要依赖于`Commons FileUpload`库,它是一个Apache提供...
在这个特定的项目中,我们关注的是"struts2文件上传下载"的功能,这涉及到用户通过Web界面上传文件到服务器,以及从服务器下载文件到用户的设备。 文件上传是Web应用中的常见需求,例如用户可能需要提交图片、文档...
Struts2文件上传程序是一个典型的企业级Web应用开发中的功能,它允许用户通过网页将本地文件上传到服务器。Struts2作为一款强大的MVC(Model-View-Controller)框架,提供了丰富的功能支持,包括文件上传。这个示例...
在Struts2中,文件上传功能是一个常用特性,尤其在处理用户提交的多个文件时。本文将详细讲解如何使用Struts2进行多个文件的上传,重点是使用List集合进行上传。 首先,要实现Struts2的文件上传,必须引入必要的...
Struts2文件上传是Web开发中常见的功能,用于允许用户在网页上选择并上传本地文件到服务器。在Java Web环境中,Struts2框架提供了一套完整的解决方案来处理文件上传请求。下面将详细介绍Struts2文件上传的核心概念、...
"Struts2文件上传带进度条页面无刷新"的实现涉及多个技术点,包括Struts2的文件上传插件、AJAX异步通信以及前端进度条展示。 首先,Struts2的文件上传依赖于`struts2-upload-plugin`。这个插件扩展了Struts2的核心...