Java文件上传的几种方式

文件上传与文件上传一样重要。在Java中,要实现文件上传,可以有两种方式:

1、通过Servlet类上传

2、通过Struts框架实现上传

这两种方式的根本还是通过Servlet进行IO流的操作。

一、通过Servlet类上传

1、编写Sevlet类

package com.chanshuyi.upload;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

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

@SuppressWarnings("serial")
public class FileUploadServlet extends HttpServlet {

	@Override
	protected void service(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {

		InputStream in = request.getInputStream();

		/* 设置文件保存地址 */
    	File saveFile = new File(this.getServletContext().getRealPath("/uploaded"), "hello.txt");
    	System.out.println("[文件保存地址]:" + saveFile.getAbsolutePath());

    	/* 保存 */
    	FileOutputStream out = new FileOutputStream(saveFile);
    	byte[] buf = new byte[4096];
    	int readLength = -1;
    	while((readLength = in.read(buf)) != -1)
    	{
    		out.write(buf);
    	}
    	out.flush();
    	out.close();
    	in.close();
    	response.getWriter().write("<html><script>alert(‘Uploaded Succeed!‘)</script></html>");
	}
}

这里用纯Servlet实现的时候,无法获取文件的文件名以及一些其他信息。还不知道怎么解决(MARK)。

2、配置web.xml文件

添加以下代码:

1 <!-- 文件上传(通过Servlet实现)  -->
2     <servlet>
3         <servlet-name>fileUploadServlet</servlet-name>
4         <servlet-class>com.chanshuyi.upload.FileUploadServlet</servlet-class>
5     </servlet>
6     <servlet-mapping>
7         <servlet-name>fileUploadServlet</servlet-name>
8         <url-pattern>/fileUploadServlet</url-pattern>
9     </servlet-mapping>

3、前台代码

1 <p>通过Servlet实现上传</p>
2 <form action="fileUploadServlet" method="post" enctype="multipart/form-data"><input type="file" name="file" id="file"/><input type="submit" value="提交"/></form> 

二、通过Struts框架实现上传

1、配置struts.xml文件

添加如下Action:

<!-- 文件上传(通过Struts实现) -->
<action name="fileUpload" class="com.chanshuyi.upload.FileUploadAction"></action>

2、编写Action类 

 1 package com.chanshuyi.upload;
 2
 3 import java.io.File;
 4
 5 import javax.servlet.ServletContext;
 6 import javax.servlet.http.HttpServletResponse;
 7
 8 import org.apache.commons.io.FileUtils;
 9 import org.apache.struts2.ServletActionContext;
10
11 import com.opensymphony.xwork2.ActionSupport;
12
13 @SuppressWarnings("serial")
14 public class FileUploadAction extends ActionSupport {
15
16     /** ActionContext对象 **/
17     ServletContext servletContext = ServletActionContext.getServletContext();
18
19     HttpServletResponse response = ServletActionContext.getResponse();
20
21     /* 特定的命名规则,不能改变 */
22     /** 上传的文件,名字要与前台name属性相同 **/
23     private File file;
24
25     /** 上传文件名称 **/
26     private String fileFileName;
27
28     /** 上传文件类型 **/
29     private String fileContentType;
30
31     public String execute()throws Exception
32     {
33         if(file == null)
34         {
35             return null;
36         }
37         /* 设置文件保存地址 */
38         File saveFile = new File(servletContext.getRealPath("/uploaded"), fileFileName);
39         System.out.println("[文件保存地址]:" + saveFile.getAbsolutePath());
40         if(!saveFile.getParentFile().exists())
41         {
42             saveFile.getParentFile().mkdir();
43         }
44
45         FileUtils.copyFile(file, saveFile);
46         System.out.println("[系统消息]:文件已经保存,保存路径为->" + saveFile.getAbsolutePath());
47
48         response.getWriter().write("<html><script>alert(‘uploaded Succeed!‘)</script></html>");
49
50         return null;
51     }
52     /* 省略GET/SET方法 */
53 }

3、前台页面

<p>通过Struts实现上传</p>
<form action="fileUpload.action" method="post" enctype="multipart/form-data"><input type="file" name="file" id="file"/><input type="submit" value="提交"/></form>

本例写的Action处理后不返回result,直接向response对象写入数据,弹出上传成功的提示。

Java文件上传的几种方式,布布扣,bubuko.com

时间: 2024-12-09 23:45:45

Java文件上传的几种方式的相关文章

文件上传的三种方式-Java

前言:因自己负责的项目(jetty内嵌启动的SpringMvc)中需要实现文件上传,而自己对java文件上传这一块未接触过,且对 Http 协议较模糊,故这次采用渐进的方式来学习文件上传的原理与实践.该博客重在实践. 一.Http协议原理简介 HTTP是一个属于应用层的面向对象的协议,由于其简捷.快速的方式,适用于分布式超媒体信息系统.它于1990年提出,经过几年的使用与发展,得到不断地完善和扩展.目前在WWW中使用的是HTTP/1.0的第六版,HTTP/1.1的规范化工作正在进行之中,而且HT

java文件上传-原始的Servlet方式

前言: 干了这几个项目,也做过几次文件上传下载,要么是copy项目以前的代码,要么是百度的,虽然做出来了,但学习一下原理弄透彻还是很有必要的.刚出去转了一圈看周围有没有租房的,在北京出去找房子是心里感觉最不爽的时候,没有归属感,房租还不便宜,RT,不能好高骛远,还是脚踏实地一点一点学技术吧,终将有一日,工资会涨的. java文件上传 传统的文件上传,不用jquery插件的话,就是用form表单提交,项目里用过uploadify,可以异步上传文件,原理我也没研究.现在说传统的form表单上传文件.

SpringMVC文件上传的两种方式

搞JavaWEB的应该或多或少都做过文件上传,之前也做过简单的上传,但是如下的需求也确实把我为难了一把: 1.上传需要异步, 2.需要把上传后文件的地址返回来, 3.需要进度条显示上传进度. 项目使用SpringMVC架构+easyUI,初步分析,进度条可以使用easyui自带的进度条,上传可以使用ajaxFileUpload或者ajaxForm.文件传上去,然后把路径带回来是没问题的,关键是上传进度怎么获取.最终,两种方式都实现啦. 首先,不管哪种方式,后台对文件处理都是必须的.文件处理: 1

利用Selenium实现图片文件上传的两种方式介绍

在实现UI自动化测试过程中,有一类需求是实现图片上传,这种需求根据开发的实现方式,UI的实现方式也会不同. 一.直接利用Selenium实现 这种方式是最简单的一种实现方式,但是依赖于开发的实现. 当开发直接使用file类型的input实现图片文件的上传时,实例:<input type="file" name=''filename"> 我们可以直接利用Selenium提供的方法实现文件上传,但是因为依赖开发的实现,而且目前实现基本都会利用框架,所以这种实现方式有很

关于文件上传的几种方式

上传之前 JavaScript 检测 1:javascript判断上传文件的大小: 在FireFox.Chrome浏览器中可以根据document.getElementById(“idoffile”).size 获取上传文件的大小(字节数),而IE浏览器中不支持该属性,只能借助标签的dynsrc属性,来间接实现获取文件的大小(但需要同意ActiveX控件的运行). var ua = window.navigator.userAgent; if (ua.indexOf("MSIE")&g

django文件上传的几种方式

方式一:通过form表单中,html input 标签的“file”完成 1 2 3 4 5 6 # 前端代码uoload.html     <form method="post" action="/upload/" enctype="multipart/form-data">         <input id="user" type="text" name="user&quo

ajax以及文件上传的几种方式

方式一:通过form表单中,html input 标签的“file”完成 # 前端代码uoload.html <form method="post" action="/upload/" enctype="multipart/form-data"> <input id="user" type="text" name="user" /> <input id='i

python文件上传的三种方式

def upload(request): return render(request, 'upload.html') def upload_file(request): username = request.POST.get('username') fafafa = request.FILES.get('fafafa') with open(fafafa.name, 'wb') as f: for item in fafafa.chunks(): f.write(item) print(user

ASP.NET Core 1.0中实现文件上传的两种方式(提交表单和采用AJAX)

Bipin Joshi (http://www.binaryintellect.net/articles/f1cee257-378a-42c1-9f2f-075a3aed1d98.aspx) Uploading files is a common requirement in web applications. In ASP.NET Core 1.0 uploading files and saving them on the server is quite easy. To that end