欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

smartupload文件上传路径问题

程序员文章站 2022-03-15 09:21:39
...
<html>
<head><title>www.mldnjava.cn,MLDN高端Java培训</title></head>
<body>
<form action="1.jsp" method="post" enctype="multipart/form-data">
	请选择文件:<input type="file" name="pic">
	<input type="submit" value="上传">
</form>
</body>
</html>

1.jsp

<%@ page contentType="text/html" pageEncoding="GBK"%>
<%@ page import="org.lxh.smart.*"%>
<html>
<head><title>www.mldnjava.cn,MLDN高端Java培训</title></head>
<body>
<%
	SmartUpload smart = new SmartUpload() ;	// 实例化SmartUpload上传组件
	smart.initialize(pageContext) ;	// 初始化上传操作
	smart.upload() ;			// 上传准备
	smart.save("upload") ;			// 将上传文件保存在upload文件夹之中
%>
</body>
</html

出现问题:

smartupload文件上传路径问题

这个upload文件夹创建在工程目录下(如下图),依旧出现上述问题。

smartupload文件上传路径问题

解决方法:

在下图目录中创建upload文件夹后,运行正常,可以看到上传文件。

smartupload文件上传路径问题

为什么???

详见tomcat在eclipse中的配置。

https://blog.csdn.net/damaolly/article/details/40588825/?biz_id=102&utm_term=org.eclipse.wst.server.core&utm_medium=distribute.pc_search_result.none-task-blog-2~all~sobaiduweb~default-0-40588825&spm=1018.2118.3001.4187