在运行java程序的时候,我们需要将java文件上传,这样做的目的就是为了使java读取文件并保存信息,可是java文件怎么上传?下面来我们就来给大家讲解一下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文件
<!-- 文件上传(通过Servlet实现) --> <servlet> <servlet-name>fileUploadServlet</servlet-name> <servlet-class>com.chanshuyi.upload.FileUploadServlet</servlet-class> </servlet> < servlet - mapping > <servlet-name>fileUploadServlet</servlet-name> < url - pattern > /fileUploadServlet</url - pattern > </servlet-mapping> 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类
package com.chanshuyi.upload; import java.io.File; import javax.servlet.ServletContext; import javax.servlet.http.HttpServletResponse; import org.apache.commons.io.FileUtils; import org.apache.struts2.ServletActionContext; import com.opensymphony.xwork2.ActionSupport; @SuppressWarnings("serial") public class FileUploadAction extends ActionSupport { /** ActionContext对象 **/ ServletContext servletContext = ServletActionContext.getServletContext(); HttpServletResponse response = ServletActionContext.getResponse(); /* 特定的命名规则,不能改变 */ /** 上传的文件,名字要与前台name属性相同 **/ private File file; /** 上传文件名称 **/ private String fileFileName; /** 上传文件类型 **/ private String fileContentType; public String execute() throws Exception { if (file == null) { return null; } /* 设置文件保存地址 */ File saveFile = new File(servletContext.getRealPath("/uploaded"), fileFileName); System.out.println("[文件保存地址]:" + saveFile.getAbsolutePath()); if (!saveFile.getParentFile() .exists()) { saveFile.getParentFile() .mkdir(); } FileUtils.copyFile(file, saveFile); System.out.println("[系统消息]:文件已经保存,保存路径为->" + saveFile.getAbsolutePath()); response.getWriter() .write("<html><script>alert('uploaded Succeed!')</script></html>"); return null; } /* 省略GET/SET方法 */ }
3、前台页面
<p>通过Struts实现上传</p> < form action = "fileUpload.action" method = "post" enctype = "multipart/form-data" > <input type="file" name="file" id="file"/> < input type = "submit"
java文件上传要注意什么?
1、为保证服务器安全,上传的文件应该放在外界无法直接访问的目录下;
2、为了防止文件覆盖的现象,要为上传的文件产生一个唯一的文件名。
3、限制上传文件的最大值;
4、限制上传文件的类型,在收到上传文件时,判断其后缀名是否合法,是否为自己限制的类型;
java文件上传可以通过Servlet类上传以及Struts框架实现上传,在上传的过程中,需要注意以上几点,保证文件顺利上传!最后大家如果想要了解更多java入门知识,敬请关注奇Q工具网。
推荐阅读: