‘壹’ MultipartFile.transferTo(targetFile)
时间:2020.12.4
异常:java.io.FileNotFoundException: /home/jdp/apache-tomcat-8.5.54-8-group/apache-tomcat-8.5.54-80 /work/Catalina/localhost/ROOT/upload_cda0de04_fa66_4589_8170_5cb0cb7f8152_00000005.tmp
初步判断:文件上传路径问题,但是项目路径中并未配置这个路径,后面了解到 /work 是tomcat 编译文件的临时路径,联想到 /work 之后的文件可能是上传的临时文件路局侍径,而前面的路径是tomcat的绝对路径
探索1:项目配置的文件路径为/home/temp, 可能是因为tomcat的临时文件路径和我们上传的临时文件路径不匹配导致的
尝试1:设置tomcat 临时文件路径 在 application.properites 中配置 增加配置 server.tomcat.basedir=/home/temp
结果1:未解决,报错不变
探索2:查阅资料得知 MultipartFile.transferTo(targetFile) 方法是面向绝对路径的,如果入参是一个相对路径,则会在路径之前加上 一个系统绝对路径(比较符合我们的情况)
尝试2:根据文章所述:增咐腊余加配置类 指定临时文件的路径
@Configuration
public class FileUploadConfig {
@Value("${file.temp.root}")
private String FILE_TEMP_ROOT;
/**
* 文件上传配置
*
* @return MultipartConfigElement
*/
@Bean
public MultipartConfigElement multipartConfigElement(
@Value("${multipart.maxFileSize}") String maxFileSize,
@Value("${multipart.maxRequestSize}") String maxRequestSize) {
MultipartConfigFactory factory = new MultipartConfigFactory();
// 单个文件最大
factory.setMaxFileSize(maxFileSize);
// 设置总上传数据总大小
factory.setMaxRequestSize(maxRequestSize);
//上传临时路径
File file = new File(FILE_TEMP_ROOT);
if (!file.exists()) {
file.mkdirs();
}
factory.setLocation(FILE_TEMP_ROOT);
return factory.createMultipartConfig();
}
}
结果2:报错发生变化,变成了我们的指定的路径加上 临时文件名,但是依旧未能解决问题
java.io.FileNotFoundException: /home/temp/upload_a8eb4246_470f_4f73_81af_891f1ad6651b_00000002.tmp
转换思路:既然是transferTo()方法的问题,换一个方法
探索3:更换transferTo()方法衡滚,使用 FileUtils.InputStreamToFile(sourceFile.getInputStream(), targetFile);方法
尝试3:寻找方法中包涵的transfTo()方法,替换成FileUtils.InputStreamToFile(sourceFile.getInputStream(), targetFile);
结果3:问题解决
总结:transferTo()在windows 系统上并没有这个问题,在Linux上出现了这个问题,网上的资料各有说法,目前未找到真正的原因。为了避免这个问题,统一使用FileUtils.InputStreamToFile(sourceFile.getInputStream(), targetFile);方法来复制文件。
‘贰’ 查看上传文件的路径
您好!
一般服务器为了安全,是不可能显示绝对路径的,要显示了,那黑客还不把服务器给黑了,呵呵~~~~
一句话:找不到的!
-----------------全心全意为人民服务!---------------
如果我的答案对您有帮助,那么我倍感欣慰,您的支持就是我前进的动力!
如果我的答案不够清楚、详细,那么我会继续努力做的更好!
‘叁’ C#后台怎么获取前台文件上传的路径
最好的方法是用JQuery的AJAX传!!或者用一般处理程序,你自己看看,很简单的!
‘肆’ asp怎样上传文件到指定的文件夹,并在access中记录路径
上传文件页 index.asp 开始
-----------------------------
index.asp 代码如下
<SCRIPT language=JavaScript type=text/javascript>
function a(htmlurl) {
var win = window.open(htmlurl,"newwin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=300,height=10,left=380,top=380");
}
</SCRIPT>
<form name="zc" action="index.asp" method="post">
<table width="100%" border="0" cellspacing="0" cellpadding="0" >
<tr>
<td height="30" align="right" style="color:#666">汽车照片:</td>
<td><input type="text" name="qczp" class="zc_input" maxlength="100" value="<%=session("qczp")%>" readonly></td>
<td bgcolor="#E7F8F8" style="color:#666"><input type="button" value="上传图片" onClick="a('uploadprod.asp');" name="button" style="color:#666; width:60px; height:20px;"></td>
</tr>
</form>
</table>
上传文件页 index.asp 结束
-----------------------------
uploadprod.asp 选择滑颂辩图片上传 开始
-----------------------------
uploadprod.asp 代码如下
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type"樱滑 content="text/html; charset=gb2312" />
<title>上传图片</title>
<link href="../images/cnge_wy.css"信缺 rel="stylesheet" type="text/css" />
<script>
function check()
{
var mf=document.up;
if (mf.image.value.length<4)
{
alert("请选择需要上传的图片.");
mf.image.focus();
return false;
}
return true;
}
</script>
<script language="JavaScript">
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
function norightclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
</script>
</head>
<body onselectstart="return false" on="return false" oncut="return false" onpaste="return false" oncontextmenu="return false">
<%
response.buffer=true
const page_level=1
%>
<table width="300" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td colspan="2" align="center" height="25" style="font-weight:bold;">上传图片</td>
</tr>
<form name="up" method="post" action="uploadprod2.asp" enctype="multipart/form-data" onsubmit='return check();'>
<tr>
<td width="50%" align="right" height="25">选择图片:</td>
<td width="50%"><input type="file" name="image" style="border:1px solid #cdcdcd;"></td>
</tr>
<tr>
<td colspan="2" height="25" align="center"><input type="submit" value="提 交" name="Submit" style="width:45px; height:18px; border:1px solid #cdcdcd; color:#666; background-color:#FFFFFF;">
<input type="reset" value="重 置" style="width:45px; height:18px; border:1px solid #cdcdcd; color:#666; background-color:#FFFFFF;"></td>
</tr>
</form>
</table>
</body>
</html>
上传文件页 uploadprod.asp 结束
-----------------------------
判断文件以及文件是否存在则上传 uploadprod2.asp 开始
-----------------------------
uploadprod2.asp 源代码
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>图片上传</title>
<link href="../images/cnge_wy.css" rel="stylesheet" type="text/css" />
<script language="JavaScript">
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
function norightclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
</script>
</head>
<body onselectstart="return false" on="return false" oncut="return false" onpaste="return false" oncontextmenu="return false">
<% response.buffer=true
session("path1")=""
const page_level=1
%>
<!--#include file=zupload.asp-->
<%
AllowFileExtStr = "jpg,gif,png,bmp"
dim ID
dim upload,path,file1,filename1
set upload=new upload_5xSoft'建立上传对象
'图片上传
formPath="../Carpic/"'上传图片目录
'开始上传图片
set file1=upload.file("image")
filename1=year(now())&"-"&month(now())&"-"&day(now())&"_"&hour(now())&"-"&Minute(now())&"-"&Second(now()) & right(file1.FileName,4)
if file1.FileSize>0 then'如果 FileSize > 0 说明有文件数据
FileExtName=mid (file1.FileName,InStrRev (file1.FileName, ".")+1)
if CheckFileType(AllowFileExtStr,FileExtName) = False then
response.Write file1.FileName & "<br><font color=red>文件:不允许上传!<br>上传文件类型有:" & AllowFileExtStr &"</font>"
response.Write "<br>"
response.Write "你的IP:"&Replace(Request.ServerVariables("REMOTE_ADDR"),"'","")&""
response.Write "<br>"
response.write "你的操作已被系统所记录!"
response.End()
end if
file1.SaveAs Server.mappath(formPath&filename1)'保存文件
'上传图片成功
path1= "/Carpic/"&filename1
else
response.write "请选择要插入的图片文件"
end if
session("qczp")=path1
%>
<p>图片上传成功.
<script language=javascript>
alert("图片上传成功!");
opener.document.zc.qczp.value="<%=path1%>";
window.close();
</script>
<%set file1=nothing
Function CheckFileType(AllowExtStr,FileExtName)
Dim i,AllowArray
AllowArray = Split(AllowExtStr,",")
FileExtName = LCase(FileExtName)
CheckFileType = False
For i = LBound(AllowArray) to UBound(AllowArray)
if LCase(AllowArray(i)) = LCase(FileExtName) then
CheckFileType = True
end if
Next
if FileExtName="asp" or FileExtName="asa" or FileExtName="aspx" or FileExtName="php" or FileExtName="php3" or FileExtName="php4" or FileExtName="php5" or FileExtName="exe" then
CheckFileType = False
end if
End Function
%>
%>
</body>
</html>
判断文件以及文件是否存在则上传 uploadprod2.asp 结束
-----------------------------
另外需要一个 上传组件 文件为 zupload.asp 开始
-----------------------------
代码如下
<SCRIPT RUNAT=SERVER LANGUAGE=VBSCRIPT>
dim Data_5xsoft
Class upload_5xsoft
dim objForm,objFile,Version
Public function Form(strForm)
strForm=lcase(strForm)
if not objForm.exists(strForm) then
Form=""
else
Form=objForm(strForm)
end if
end function
Public function File(strFile)
strFile=lcase(strFile)
if not objFile.exists(strFile) then
set File=new FileInfo
else
set File=objFile(strFile)
end if
end function
Private Sub Class_Initialize
dim RequestData,sStart,vbCrlf,sInfo,iInfoStart,iInfoEnd,tStream,iStart,theFile
dim iFileSize,sFilePath,sFileType,sFormValue,sFileName
dim iFindStart,iFindEnd
dim iFormStart,iFormEnd,sFormName
Version="上传程序 Version 2.0"
set objForm=Server.CreateObject("Scripting.Dictionary")
set objFile=Server.CreateObject("Scripting.Dictionary")
if Request.TotalBytes<1 then Exit Sub
set tStream = Server.CreateObject("adodb.stream")
set Data_5xsoft = Server.CreateObject("adodb.stream")
Data_5xsoft.Type = 1
Data_5xsoft.Mode =3
Data_5xsoft.Open
Data_5xsoft.Write Request.BinaryRead(Request.TotalBytes)
Data_5xsoft.Position=0
RequestData =Data_5xsoft.Read
iFormStart = 1
iFormEnd = LenB(RequestData)
vbCrlf = chrB(13) & chrB(10)
sStart = MidB(RequestData,1, InStrB(iFormStart,RequestData,vbCrlf)-1)
iStart = LenB (sStart)
iFormStart=iFormStart+iStart+1
while (iFormStart + 10) < iFormEnd
iInfoEnd = InStrB(iFormStart,RequestData,vbCrlf & vbCrlf)+3
tStream.Type = 1
tStream.Mode =3
tStream.Open
Data_5xsoft.Position = iFormStart
Data_5xsoft.CopyTo tStream,iInfoEnd-iFormStart
tStream.Position = 0
tStream.Type = 2
tStream.Charset ="gb2312"
sInfo = tStream.ReadText
tStream.Close
'取得表单项目名称
iFormStart = InStrB(iInfoEnd,RequestData,sStart)
iFindStart = InStr(22,sInfo,"name=""",1)+6
iFindEnd = InStr(iFindStart,sInfo,"""",1)
sFormName = lcase(Mid (sinfo,iFindStart,iFindEnd-iFindStart))
'如果是文件
if InStr (45,sInfo,"filename=""",1) > 0 then
set theFile=new FileInfo
'取得文件名
iFindStart = InStr(iFindEnd,sInfo,"filename=""",1)+10
iFindEnd = InStr(iFindStart,sInfo,"""",1)
sFileName = Mid (sinfo,iFindStart,iFindEnd-iFindStart)
theFile.FileName=getFileName(sFileName)
theFile.FilePath=getFilePath(sFileName)
'取得文件类型
iFindStart = InStr(iFindEnd,sInfo,"Content-Type: ",1)+14
iFindEnd = InStr(iFindStart,sInfo,vbCr)
theFile.FileType =Mid (sinfo,iFindStart,iFindEnd-iFindStart)
theFile.FileStart =iInfoEnd
theFile.FileSize = iFormStart -iInfoEnd -3
theFile.FormName=sFormName
if not objFile.Exists(sFormName) then
objFile.add sFormName,theFile
end if
else
'如果是表单项目
tStream.Type =1
tStream.Mode =3
tStream.Open
Data_5xsoft.Position = iInfoEnd
Data_5xsoft.CopyTo tStream,iFormStart-iInfoEnd-3
tStream.Position = 0
tStream.Type = 2
tStream.Charset ="gb2312"
sFormValue = tStream.ReadText
tStream.Close
if objForm.Exists(sFormName) then
objForm(sFormName)=objForm(sFormName)&", "&sFormValue
else
objForm.Add sFormName,sFormValue
end if
end if
iFormStart=iFormStart+iStart+1
wend
RequestData=""
set tStream =nothing
End Sub
Private Sub Class_Terminate
if Request.TotalBytes>0 then
objForm.RemoveAll
objFile.RemoveAll
set objForm=nothing
set objFile=nothing
Data_5xsoft.Close
set Data_5xsoft =nothing
end if
End Sub
Private function GetFilePath(FullPath)
If FullPath <> "" Then
GetFilePath = left(FullPath,InStrRev(FullPath, "\"))
Else
GetFilePath = ""
End If
End function
Private function GetFileName(FullPath)
If FullPath <> "" Then
GetFileName = mid(FullPath,InStrRev(FullPath, "\")+1)
Else
GetFileName = ""
End If
End function
End Class
Class FileInfo
dim FormName,FileName,FilePath,FileSize,FileType,FileStart
Private Sub Class_Initialize
FileName = ""
FilePath = ""
FileSize = 0
FileStart= 0
FormName = ""
FileType = ""
End Sub
Public function SaveAs(FullPath)
dim dr,ErrorChar,i
SaveAs=true
if trim(fullpath)="" or FileStart=0 or FileName="" or right(fullpath,1)="/" then exit function
set dr=CreateObject("Adodb.Stream")
dr.Mode=3
dr.Type=1
dr.Open
Data_5xsoft.position=FileStart
Data_5xsoft.to dr,FileSize
dr.SaveToFile FullPath,2
dr.Close
set dr=nothing
SaveAs=false
end function
End Class
</SCRIPT>
另外需要一个 上传组件 文件为 zupload.asp 结束
-----------------------------
另需要建立一个文件夹来 存放文件
我是用的 formPath="../Carpic/"'上传图片目录
也就是说本程序的上面一个文件夹为 Carpic
-----------------------------------------------------------------
全部完成,绝对能行。。。。。。
‘伍’ asp上传后怎么得到文件路径
通常我们用iframe来放册档置上传组件,然棚拦后在上传完成后,把文件名传回来
parent.document.getElementById("要显示的控件").value=文链姿胡件名
‘陆’ php的图片上传程序 判断文件类型 并获取上传以后文件的路径 我在网上找的程序是可以提取文件的 求达人修改
你找到这一句,改一下:
改动前:$name1=$name.".file";
改动后:$name1=$name;
如果弊燃不行,你再补充问题,希望能对你有帮贺卜腔助
回报就不用了禅衫
‘柒’ 有过上传文件经验的高手,帮一下啊,如何取得上传文件的路径
先拖一个HTML控件file field 设置其id为SelectFile并设置其language=c#,runat=server,再在你该程序下目录下新建一个document文件夹,忘记了是不是还需要设置下该文件夹的权限(添加一个every one用户赋予全部权限)
然后再如写代码:
string selectfile="";
string file=SelectFile.PostedFile.FileName.ToString().Trim();
if (!file.Equals(""))
{
string path=Server.MapPath(".");
string fileName = System.IO.Path.GetFileName( SelectFile.PostedFile.FileName );
path += "\\document\\";
selectfile = System.IO.Path.Combine(path,fileName);
SelectFile.PostedFile.SaveAs( selectfile);
Page.RegisterStartupScript("sb1", "<script language=javascript>alert('上传成功!');</script>");//此时你去看document文件夹下已经有你上传的文件了
}
‘捌’ asp.net网站发布后,上传文件时,而会出现路径在服务器中查找的问题,怎样解决
在ASP.NET中。当一个网站发布出去后,你在另一台机器上访问,利用文件上传控件上传一个文件时,网站会在你服务器电脑中找你上传的文件路径。就会出现找不到文件的错误。你们有遇到过吗? 请教! 补充: 我的截图上就可以看出来啊!服务器上肯定不存在啊。我是想怎么解决啊。 我网站发布到服务器,是在另台机器上访问,上传文件,网站代码却不是从我的机器上查找。而是从服务器上查找路径。怎样做到从我的机器上查找呢? 求哪段代码能够从本地查找 补充: 我是用的绝对路径!就算是用相对路径的话。也要把或慧文件上传到服务器的工程目录下啊? 补充: 把文件上传到服务器时,还是要找路径。还是会去从服务器找吧? 那还是找不到啊! 补充: 想在本地用个FileUpload浏览的路径 string fullFileName = this.File1.PostedFile.FileName;//上传的东西的路径 int position = fullFileName.LastIndexOf('\\'); string fileName = fullFileName.Substring(position + 1);//改上传东西的名字避免重复 this.File1.PostedFile.SaveAs(uploadPath + DateTime.Now.Millisecond + fileName);//上传 补充: 这就是相对路径,在message前加个~/不就行了, 补充: 你不是上传吗,怎么有delete,? 追问: 具体的说下吧!我是数据导出到EXCEL表格 ,我用微软上传控件得到路径,然后 把数据保存到EXCEL表格中去。找路径时在服务器找所以会出现路径找不到。(由于微软上传控件必须选择一个文件路径才能上传。所以就选择个文件在删除这个文件)。然后在通过 connString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + FilePath + ";Extended Properties=Excel 5.0;"; 新建Excel文件,把数据库数据导出到Excel表格 回答: 哦 有创意,呵呵,不会导出asp,winform里用过不过的要导各个dll文件,呵呵很麻烦的。 追问: 顺便问你句啊。 工程目录怎么获得。 回答: server。path()。这个就获得了,很容易把 追问: 你这个能吗?server都没有这个方法啊? mapPath() 好像也不行列! 回答: 但是就是mappath,能吧,获得工程的路径,你输出一下,我以前就是那么用的 其他回答(2)ID无法显示5级2009-06-02你确定你那个路径在服务器上存在?使用绝对路径 补充: 那你使用System.Web.Hosting.HostingEnvironment.ApplicationPhysicalPath就行了 补充: 服务器访问的是服务器的路径,你想在本地用个FileUpload浏览的路径就行了?肯定是不行的啊。 2步工作必须做,上传到服务器对应路径,读取服务器对应路径文件。 补充: 不是肯定不行吗?是一定不行,你服务器都有随便访问客户端的权限了,那么客户端还存在什么安全可言。 补充: try{if (!fileuploadExcel.HasFile){return;}if (fileuploadExcel.PostedFile.ContentType != "application/vnd.ms-excel"){Response.Write("<script>alert('文件类型应该为Excel!')</script>");return;}fileuploadExcel.SaveAs(服务器文件路径); if (!File.Exists(服务器文件路径)){Response.Write("亮察<script>alert('导入文件不存在!')</script>");return;}if (导入的方法){Response.Write("<script>alert('导入成功!')</script>"); File.Delete(服务器文件路径);}elseECommon.Alert(this, "导入敬团茄失败!");}catch{ECommon.Alert(this, "导入失败!");