search
HomeJavajavaTutorialDetailed 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  src="/static/imghwm/default1.png"  data-src="https://img.php.cn/upload/article/000/000/194/24e8d0e647e08c3cf85d607babc609ed-1.png?x-oss-process=image/resize,p_40"  class="lazy"     style="max-width:90%"+req.getContextPath()+"/up/"+multiReq.getFilesystemName("img1")+"&#39; alt="Detailed explanation of using COS to implement file upload function in Java" ></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=&#39;/CosServlet&#39;/>" 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!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How does the JVM handle differences in operating system APIs?How does the JVM handle differences in operating system APIs?Apr 27, 2025 am 12:18 AM

JVM handles operating system API differences through JavaNativeInterface (JNI) and Java standard library: 1. JNI allows Java code to call local code and directly interact with the operating system API. 2. The Java standard library provides a unified API, which is internally mapped to different operating system APIs to ensure that the code runs across platforms.

How does the modularity introduced in Java 9 impact platform independence?How does the modularity introduced in Java 9 impact platform independence?Apr 27, 2025 am 12:15 AM

modularitydoesnotdirectlyaffectJava'splatformindependence.Java'splatformindependenceismaintainedbytheJVM,butmodularityinfluencesapplicationstructureandmanagement,indirectlyimpactingplatformindependence.1)Deploymentanddistributionbecomemoreefficientwi

What is bytecode, and how does it relate to Java's platform independence?What is bytecode, and how does it relate to Java's platform independence?Apr 27, 2025 am 12:06 AM

BytecodeinJavaistheintermediaterepresentationthatenablesplatformindependence.1)Javacodeiscompiledintobytecodestoredin.classfiles.2)TheJVMinterpretsorcompilesthisbytecodeintomachinecodeatruntime,allowingthesamebytecodetorunonanydevicewithaJVM,thusfulf

Why is Java considered a platform-independent language?Why is Java considered a platform-independent language?Apr 27, 2025 am 12:03 AM

JavaachievesplatformindependencethroughtheJavaVirtualMachine(JVM),whichexecutesbytecodeonanydevicewithaJVM.1)Javacodeiscompiledintobytecode.2)TheJVMinterpretsandexecutesthisbytecodeintomachine-specificinstructions,allowingthesamecodetorunondifferentp

How can graphical user interfaces (GUIs) present challenges for platform independence in Java?How can graphical user interfaces (GUIs) present challenges for platform independence in Java?Apr 27, 2025 am 12:02 AM

Platform independence in JavaGUI development faces challenges, but can be dealt with by using Swing, JavaFX, unifying appearance, performance optimization, third-party libraries and cross-platform testing. JavaGUI development relies on AWT and Swing, which aims to provide cross-platform consistency, but the actual effect varies from operating system to operating system. Solutions include: 1) using Swing and JavaFX as GUI toolkits; 2) Unify the appearance through UIManager.setLookAndFeel(); 3) Optimize performance to suit different platforms; 4) using third-party libraries such as ApachePivot or SWT; 5) conduct cross-platform testing to ensure consistency.

What aspects of Java development are platform-dependent?What aspects of Java development are platform-dependent?Apr 26, 2025 am 12:19 AM

Javadevelopmentisnotentirelyplatform-independentduetoseveralfactors.1)JVMvariationsaffectperformanceandbehavioracrossdifferentOS.2)NativelibrariesviaJNIintroduceplatform-specificissues.3)Filepathsandsystempropertiesdifferbetweenplatforms.4)GUIapplica

Are there performance differences when running Java code on different platforms? Why?Are there performance differences when running Java code on different platforms? Why?Apr 26, 2025 am 12:15 AM

Java code will have performance differences when running on different platforms. 1) The implementation and optimization strategies of JVM are different, such as OracleJDK and OpenJDK. 2) The characteristics of the operating system, such as memory management and thread scheduling, will also affect performance. 3) Performance can be improved by selecting the appropriate JVM, adjusting JVM parameters and code optimization.

What are some limitations of Java's platform independence?What are some limitations of Java's platform independence?Apr 26, 2025 am 12:10 AM

Java'splatformindependencehaslimitationsincludingperformanceoverhead,versioncompatibilityissues,challengeswithnativelibraryintegration,platform-specificfeatures,andJVMinstallation/maintenance.Thesefactorscomplicatethe"writeonce,runanywhere"

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software