Detailed explanation of using COS to implement file upload function in Java
cos is an OpenSource component developed by O'Rrilly for HTTP upload files. Through this article, I will share with you how to use COS to implement the file upload function. Friends who are interested should take a look.
cos is an OpenSource component developed by O'Rrilly for HTTP file upload
Require cos.jar
Cos uploading files is very simple, simpler than fileupload: But I tried the maximum upload size, which is more than 800 megabytes. If it exceeds, it will crash directly:
java.io.IOException : Posted content length of 1627105576 exceeds limit of 889192448 --->byte, more than 800M
Just one servelt is enough:
package com.lhy.upload; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.io.PrintWriter; import java.util.Enumeration; import java.util.UUID; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.oreilly.servlet.MultipartRequest; import com.oreilly.servlet.multipart.FileRenamePolicy; /** * CosServlet * 在Cos中就一个类, * MultipartRequest它是request的包装类。 */ @WebServlet(name="CosServlet",urlPatterns="/CosServlet") public class CosServlet extends HttpServlet{ @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { //第一步,声明文件的保存目录 String path = getServletContext().getRealPath("/up"); //第二步:文件上传 //声明文件重新命名策略,默认的不行不能重命名,自己实现FileRenamePolicy接口 // FileRenamePolicy rename = new DefaultFileRenamePolicy(); MultipartRequest multiReq = new MultipartRequest(req, path, 1024*1024*100, "UTF-8",new MyRename()); //输出所上传的文件的信息 Enumeration fileNames = multiReq.getFileNames(); while(fileNames.hasMoreElements()){ String name = (String)fileNames.nextElement(); File file = multiReq.getFile(name);//得到上传的文件 if(null != file){ String fileName = multiReq.getFilesystemName(name); //取得文件名 String contentType = multiReq.getContentType(name);//类型 System.out.println("上传的文件: " +fileName+", 文件类型: "+contentType); } } //输出所提交的表单中其它文本输入域的值 Enumeration formValue = multiReq.getParameterNames(); while(formValue.hasMoreElements()){ String param = (String)formValue.nextElement(); String value = multiReq.getParameter(param); System.out.println(value); } //第三步:如果知道input的name,还可以直接获取信息, /*resp.setContentType("text/html;charset=UTf-8"); PrintWriter out = resp.getWriter(); out.print("文件名称1:"+multiReq.getOriginalFileName("img1")); out.print("<br/>新名称:"+multiReq.getFilesystemName("img1")); out.print("<br/>类型1:"+multiReq.getContentType("img1")); out.print("<br/>大小1:"+multiReq.getFile("img1").length()); out.print("<br/>说明:"+multiReq.getParameter("desc1")); if(multiReq.getContentType("img1").contains("image/")){ out.print("<img width='300px' height='200px' src='"+req.getContextPath()+"/up/"+multiReq.getFilesystemName("img1")+"'></img>"); } out.print("<hr/>"); out.print("文件名称2:"+multiReq.getOriginalFileName("img2")); out.print("<br/>类型2:"+multiReq.getContentType("img2")); out.print("<br/>大小2:"+multiReq.getFile("img2").length()); out.print("<br/>说明2:"+multiReq.getParameter("desc2")); // out.print("<hr/>"); out.print("文件名称3:"+multiReq.getOriginalFileName("img3")); out.print("<br/>类型3:"+multiReq.getContentType("img3")); out.print("<br/>大小3:"+multiReq.getFile("img3").length()); out.print("<br/>说明3:"+multiReq.getParameter("desc3"));*/ } } /** * 重命名策略, */ class MyRename implements FileRenamePolicy{ @Override public File rename(File file) { String fileName = file.getName(); String extName = fileName.substring(fileName.lastIndexOf(".")); String uuid = UUID.randomUUID().toString().replace("-",""); String newName = uuid+extName;//abc.jpg file = new File(file.getParent(),newName); return file; } }
Form :
<form action="<c:url value='/CosServlet'/>" method="post" enctype="multipart/form-data"> File1:<input type="file" name="img1"><br /> 说明1: <input type="text" name="desc1"><br /> File2:<input type="file" name="img2"><br/> 说明2:<input type="text" name="desc2"><br/> File3:<input type="file" name="img3"><br/> 说明3:<input type="text" name="desc3"><br/> <input type="submit" /> </form>
Start uploading:
Server:
Summarize
The above is the detailed content of Detailed explanation of using COS to implement file upload function in Java. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

Guide to TimeStamp to Date in Java. Here we also discuss the introduction and how to convert timestamp to date in java along with examples.

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

Java is a popular programming language that can be learned by both beginners and experienced developers. This tutorial starts with basic concepts and progresses through advanced topics. After installing the Java Development Kit, you can practice programming by creating a simple "Hello, World!" program. After you understand the code, use the command prompt to compile and run the program, and "Hello, World!" will be output on the console. Learning Java starts your programming journey, and as your mastery deepens, you can create more complex applications.
