jsp的文件怎么上传
1.文件上传:
有关jsp的文件上传,我们需要导一个叫jspsmartupload.jar的包。
例 1.1.1
upload.jsp:
<%@ page contentType="text/html; charset=GBK" %>
<%
if(request.getParameter("i")!=null)
{
out.print("上传了"+request.getParameter("i")+"个文件");
}
%>
we must use post, otheriwse, report negativeArray error.
更多内容请见原文,文章转载自:https://blog.csdn.net/qq_44638460/article/details/104157814