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")+"' 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='/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!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
