后台是HttpServer 理所当然的便想到了使用Http的Post来上传文件。 2.2 协议格式 http协议网上说的有很多,http协议大致有三个部分: Request-Line/Respone-Line,Header,Body三个部分。虽然网上说使用Http协议的Post上传文件的不太多,但还是找到了一份,而且基本上也确定了用法。大致上就是在Header的Content-Type中加上一...
1.el-upload http-request使用 多个文件上传携带其他参数方式2023-06-07 收起 https://www.jb51.net/article/246429.htm https://blog.csdn.net/m0_49194578/article/details/125074755 http://www.taodudu.cc/news/show-3058666.html?action=onClick合集...
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //request.setCharacterEncoding("gbk"); 不起作用 System.out.println("start "); MultipartRequest multi = new MultipartRequest(request, "c:/tmp/", 2*1024*1024, "gbk", new DefaultFile...